From 48d0424022f6ebf799ff6cd873d51298b5ff9a2b Mon Sep 17 00:00:00 2001 From: Danny Mota Date: Fri, 4 Sep 2026 08:09:49 -0400 Subject: [PATCH 1/3] docs: add NeuronPool OpenAI-compatible provider page --- .../model-providers/more/neuronpool.mdx | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 docs/customize/model-providers/more/neuronpool.mdx diff --git a/docs/customize/model-providers/more/neuronpool.mdx b/docs/customize/model-providers/more/neuronpool.mdx new file mode 100644 index 00000000000..0ce9274fb6c --- /dev/null +++ b/docs/customize/model-providers/more/neuronpool.mdx @@ -0,0 +1,49 @@ +--- +title: "NeuronPool" +sidebarTitle: "NeuronPool" +--- + + + Mint a buyer key on the [NeuronPool dashboard](https://neuronpool.damnknee.workers.dev/dashboard). + + +NeuronPool is an OpenAI-compatible inference API (pool machines plus public buyers). Use `provider: openai` and set `apiBase`. Model ids come from `GET /v1/models` (`gpt-oss-20b`, `llama-3.1-8b-instruct`, …). + +## Configuration + + + + ```yaml title="config.yaml" + name: My Config + version: 0.0.1 + schema: v1 + + models: + - name: NeuronPool gpt-oss-20b + provider: openai + model: gpt-oss-20b + apiBase: https://neuronpool.damnknee.workers.dev/v1 + apiKey: ${{ secrets.NEURONPOOL_API_KEY }} + roles: [chat, edit, apply] + ``` + + + ```json title="config.json" + { + "models": [ + { + "title": "NeuronPool gpt-oss-20b", + "provider": "openai", + "model": "gpt-oss-20b", + "apiBase": "https://neuronpool.damnknee.workers.dev/v1", + "apiKey": "" + } + ] + } + ``` + + + +`apiBase` **must** include `/v1`. Continue appends `/chat/completions` and `/models`. Store the key in Continue secrets, not in the file. + +Until `api.neuronpool.dev` resolves, use the live Worker URL above. After the custom-domain cutover, swap `apiBase` to `https://api.neuronpool.dev/v1`. From 6a1e496835f5b3e16348c27f02469cc432d37d4f Mon Sep 17 00:00:00 2001 From: dannymota <7347658+dannymota@users.noreply.github.com> Date: Fri, 4 Sep 2026 13:20:45 +0000 Subject: [PATCH 2/3] feat: add NeuronPool to Add Model wizard --- .../pages/AddNewModel/configs/providers.ts | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gui/src/pages/AddNewModel/configs/providers.ts b/gui/src/pages/AddNewModel/configs/providers.ts index 9e2aba08c5c..8870eb275df 100644 --- a/gui/src/pages/AddNewModel/configs/providers.ts +++ b/gui/src/pages/AddNewModel/configs/providers.ts @@ -224,6 +224,44 @@ export const providers: Partial> = { ], }, + neuronpool: { + title: "NeuronPool", + provider: "openai", + description: + "OpenAI-compatible social compute — pool machines plus public buyers.", + longDescription: `Mint a buyer key on the [NeuronPool dashboard](https://neuronpool.damnknee.workers.dev/dashboard). Continue talks to the OpenAI-compatible API at the live Worker until api.neuronpool.dev resolves.`, + icon: "openai.png", + tags: [ModelProviderTags.RequiresApiKey], + refPage: "neuronpool", + apiKeyUrl: "https://neuronpool.damnknee.workers.dev/dashboard", + params: { + apiBase: "https://neuronpool.damnknee.workers.dev/v1", + }, + collectInputFor: [ + { + inputType: "text", + key: "apiKey", + label: "API Key", + placeholder: "sk-neuronpool-…", + required: true, + }, + { + ...apiBaseInput, + defaultValue: "https://neuronpool.damnknee.workers.dev/v1", + }, + ...completionParamsInputsConfigs, + ], + packages: [ + { + ...models.AUTODETECT, + params: { + ...models.AUTODETECT.params, + title: "NeuronPool", + }, + }, + ], + }, + moonshot: { title: "Moonshot", provider: "moonshot", From 4b6f4c1d551f4ea3c6773be64f919a7384c0d51a Mon Sep 17 00:00:00 2001 From: Danny Mota Date: Fri, 4 Sep 2026 09:24:36 -0400 Subject: [PATCH 3/3] docs: mention Add Model wizard on NeuronPool page --- docs/customize/model-providers/more/neuronpool.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/customize/model-providers/more/neuronpool.mdx b/docs/customize/model-providers/more/neuronpool.mdx index 0ce9274fb6c..02333454df1 100644 --- a/docs/customize/model-providers/more/neuronpool.mdx +++ b/docs/customize/model-providers/more/neuronpool.mdx @@ -9,6 +9,8 @@ sidebarTitle: "NeuronPool" NeuronPool is an OpenAI-compatible inference API (pool machines plus public buyers). Use `provider: openai` and set `apiBase`. Model ids come from `GET /v1/models` (`gpt-oss-20b`, `llama-3.1-8b-instruct`, …). +Add Model → **NeuronPool** pre-fills the live Worker base URL and AUTODETECT models. Paste a `sk-neuronpool-…` key. + ## Configuration