From 67cc577bbeaa334e5aa23e61486386194bbc3bf9 Mon Sep 17 00:00:00 2001 From: seven7763 <246023385+seven7763@users.noreply.github.com> Date: Mon, 13 Jul 2026 11:08:00 +0800 Subject: [PATCH 1/2] docs: add DaoXE OpenAI-compatible provider guide Document configuring Continue with DaoXE via provider openai + apiBase https://daoxe.com/v1, including multi-protocol notes and availability limits. --- docs/customize/model-providers/more/daoxe.mdx | 60 +++++++++++++++++++ docs/customize/model-providers/overview.mdx | 1 + docs/docs.json | 1 + 3 files changed, 62 insertions(+) create mode 100644 docs/customize/model-providers/more/daoxe.mdx diff --git a/docs/customize/model-providers/more/daoxe.mdx b/docs/customize/model-providers/more/daoxe.mdx new file mode 100644 index 00000000000..666d8191963 --- /dev/null +++ b/docs/customize/model-providers/more/daoxe.mdx @@ -0,0 +1,60 @@ +--- +title: "DaoXE" +description: "Configure DaoXE with Continue as a multi-model multi-protocol AI API gateway using an OpenAI-compatible endpoint" +--- + + + Get an API key from [DaoXE](https://daoxe.com) + + +[DaoXE](https://daoxe.com) is a multi-model multi-protocol AI API gateway for developers. +Use it with Continue through the OpenAI-compatible provider by setting `apiBase` to +`https://daoxe.com/v1`. + +DaoXE supports OpenAI Chat Completions, OpenAI Responses, Anthropic Messages, and +image-compatible endpoints. Continue uses the OpenAI Chat Completions path below. + +> DaoXE is **not available in mainland China**. + +## Configuration + +Replace the placeholders with values from your own DaoXE account. Prefer an exact +model ID currently available to your key. + + + + ```yaml title="config.yaml" + name: My Config + version: 0.0.1 + schema: v1 + + models: + - name: DaoXE + provider: openai + model: + apiBase: https://daoxe.com/v1 + apiKey: + ``` + + + ```json title="config.json" + { + "models": [ + { + "title": "DaoXE", + "provider": "openai", + "model": "", + "apiBase": "https://daoxe.com/v1", + "apiKey": "" + } + ] + } + ``` + + + +## Notes + +- Discover current models on the [DaoXE pricing/catalog page](https://daoxe.com/pricing) and confirm against your account. +- Public examples and a low-cost smoke/compare benchmark: [DaoXE-AI](https://github.com/seven7763/DaoXE-AI). +- Continue's OpenAI provider supports OpenAI-compatible endpoints via `apiBase`. diff --git a/docs/customize/model-providers/overview.mdx b/docs/customize/model-providers/overview.mdx index 7ba030dcb4d..ce7c4c81fe1 100644 --- a/docs/customize/model-providers/overview.mdx +++ b/docs/customize/model-providers/overview.mdx @@ -33,6 +33,7 @@ Beyond the top-level providers, Continue supports many other options: | [Groq](/customize/model-providers/more/groq) | Ultra-fast inference for various open models | | [Together AI](/customize/model-providers/more/together) | Platform for running a variety of open models | | [DeepInfra](/customize/model-providers/more/deepinfra) | Hosting for various open source models | +| [DaoXE](/customize/model-providers/more/daoxe) | Multi-model multi-protocol AI API gateway (OpenAI-compatible) | | [OpenRouter](/customize/model-providers/top-level/openrouter) | Gateway to multiple model providers | | [ClawRouter](/customize/model-providers/more/clawrouter) | Open-source LLM router with automatic cost-optimized model selection | | [Tetrate Agent Router Service](/customize/model-providers/top-level/tetrate_agent_router_service) | Gateway with intelligent routing across multiple model providers | diff --git a/docs/docs.json b/docs/docs.json index b7a1d83f13a..c9864923b5b 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -109,6 +109,7 @@ "customize/model-providers/more/clawrouter", "customize/model-providers/more/deepseek", "customize/model-providers/more/deepinfra", + "customize/model-providers/more/daoxe", "customize/model-providers/more/groq", "customize/model-providers/more/llamacpp", "customize/model-providers/more/llamastack", From e0533469bbec717bb86c3bfebcba3e7f70578110 Mon Sep 17 00:00:00 2001 From: seven7763 <246023385+seven7763@users.noreply.github.com> Date: Mon, 13 Jul 2026 11:20:41 +0800 Subject: [PATCH 2/2] docs: format docs.json with Prettier Fix prettier-check CI failure on the navigation entry for DaoXE. --- docs/docs.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs.json b/docs/docs.json index c9864923b5b..2c80800b866 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -109,7 +109,7 @@ "customize/model-providers/more/clawrouter", "customize/model-providers/more/deepseek", "customize/model-providers/more/deepinfra", - "customize/model-providers/more/daoxe", + "customize/model-providers/more/daoxe", "customize/model-providers/more/groq", "customize/model-providers/more/llamacpp", "customize/model-providers/more/llamastack",