From 1053183144b9f0636329dcf8fbea3a6afd63b7b9 Mon Sep 17 00:00:00 2001 From: Henrik Bakke Dukefoss Date: Mon, 7 Sep 2026 09:18:56 +0200 Subject: [PATCH] docs: add Standard Compute OpenAI-compatible setup --- .../model-providers/more/standardcompute.mdx | 43 +++++++++++++++++++ docs/docs.json | 1 + 2 files changed, 44 insertions(+) create mode 100644 docs/customize/model-providers/more/standardcompute.mdx diff --git a/docs/customize/model-providers/more/standardcompute.mdx b/docs/customize/model-providers/more/standardcompute.mdx new file mode 100644 index 00000000000..e4755a66fd9 --- /dev/null +++ b/docs/customize/model-providers/more/standardcompute.mdx @@ -0,0 +1,43 @@ +--- +title: "Standard Compute" +description: "Use Standard Compute's routed model through Continue's OpenAI-compatible provider." +--- + +Use [Standard Compute](https://standardcompute.com/) to keep working in Continue +while the service selects models and providers for your requests. Connect it +through Continue's existing `openai` provider with a custom API base. + +## Configuration + +1. Get an API key from the [Standard Compute dashboard](https://standardcompute.com/dashboard). +2. Add the model below to your `~/.continue/config.yaml`. If you already have + models configured, append this entry to your existing `models` list. +3. Replace `` with your key and select + **Standard Compute** in Continue's model selector. + +```yaml title="config.yaml" +name: My Config +version: 0.0.1 +schema: v1 + +models: + - name: Standard Compute + provider: openai + model: standardcompute + apiBase: https://api.stdcmpt.com/v1 + apiKey: + roles: + - chat + capabilities: + - tool_use +``` + +Keep `provider: openai`: it selects the compatible connection, while `apiBase` +directs requests to Standard Compute. This example uses Chat Completions and +declares tool use explicitly because `standardcompute` is a routing alias that +Continue cannot identify as a specific upstream model. + +The example configures the chat role, including Agent mode. Keep your existing +autocomplete and embedding models if you use those features. Check +[Standard Compute's current plans](https://standardcompute.com/pricing) for the +subscription and usage allowance; these are separate from Continue. diff --git a/docs/docs.json b/docs/docs.json index b7a1d83f13a..73ba1b33bb6 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -117,6 +117,7 @@ "customize/model-providers/more/moonshot", "customize/model-providers/more/nous", "customize/model-providers/more/nvidia", + "customize/model-providers/more/standardcompute", "customize/model-providers/more/tensorix", "customize/model-providers/more/together", "customize/model-providers/more/xAI",