feat(llms): add Auxen as an OpenAI-compatible provider#12473
Open
ai-auxen wants to merge 1 commit into
Open
Conversation
Adds Auxen (https://auxen.ai) as a first-class provider. Auxen hosts per-customer dedicated LLM endpoints (Llama, Qwen, Mistral, Gemma, Mixtral, Phi, Command R) on stable HTTPS URLs with an OpenAI-compatible API. Each instance is a dedicated GPU billed per-minute of runtime. The provider is a thin OpenAI subclass; because Auxen base URLs are per-instance (issued by the Auxen dashboard), users provide both `apiBase` and `apiKey` in their config rather than relying on a fixed default. Changes: - core/llm/llms/Auxen.ts: new provider class - core/llm/llms/index.ts: register Auxen - packages/openai-adapters/src/types.ts: add "auxen" to provider union - packages/openai-adapters/src/index.ts: add "auxen" case - extensions/vscode/config_schema.json: add "auxen" to provider enum + matching markdown description, plus the apiKey-required providers list - docs/customize/model-providers/more/auxen.mdx: provider docs page AI agent (Claude) assisted in drafting this PR.
Contributor
|
I have read the CLA Document and I hereby sign the CLA You can retrigger this bot by commenting recheck in this Pull Request. Posted by the CLA Assistant Lite bot. |
This was referenced May 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds Auxen as a first-class Continue provider. Auxen hosts per-customer dedicated LLM endpoints (Llama 3.1/3.2, Qwen 2.5, Mistral, Gemma 2, Mixtral, Phi-3, Command R) on stable HTTPS URLs with an OpenAI-compatible `/v1/chat/completions` API. Each Auxen instance is a dedicated GPU billed per-minute of runtime, not per-token.
Why a dedicated provider
Auxen is OpenAI-wire-compatible, so users could in principle use the existing `openai` provider with a custom `apiBase`. Registering Auxen as its own provider improves UX in three ways:
About the per-instance `apiBase`
Unlike most OpenAI-compatible providers that have a single global base URL, every Auxen instance is issued its own URL of the form `https://api.auxen.ai/v1/inst_xxx/v1\`. Users set both `apiBase` and `apiKey` in their config:
```yaml
models:
provider: auxen
model: llama-3.1-8b
apiBase: https://api.auxen.ai/v1/inst_xxx/v1
apiKey: auxk_...
```
Files touched
Companion PRs (Auxen distribution series)
Summary by cubic
Add
auxenas an OpenAI-compatible provider with per-instance endpoints, so users can select Auxen in config and use dedicated GPU-backed models. This improves autocomplete, provider help, validation, and adds docs.Auxenprovider (thinOpenAIsubclass). Users must setapiBase(per-instance) andapiKey.LLMClassesandpackages/openai-adapters(provider: "auxen").config_schema.json: provider enum, markdown help, and inclusion in the apiKey-required list.docs/customize/model-providers/more/auxen.mdx.Written for commit 7e00e44. Summary will update on new commits. Review in cubic