docs(auxen): add Auxen chat model integration pages (Python + JS)#4146
Open
Samp2Alex wants to merge 3 commits into
Open
docs(auxen): add Auxen chat model integration pages (Python + JS)#4146Samp2Alex wants to merge 3 commits into
Samp2Alex wants to merge 3 commits into
Conversation
Adds a chat-model integration page for Auxen, which serves per-customer dedicated LLM endpoints with an OpenAI-compatible /v1/chat/completions surface. Since Auxen instances implement the OpenAI wire format directly, the integration uses ChatOpenAI with a per-instance base_url and bearer token — no dedicated partner package is required. The page covers credentials, instantiation, invocation, streaming, tool calling, chaining, and the open-source model catalog. Also adds an alphabetical card entry to the "All chat models" grid on the chat integrations index. AI agent (Claude) assisted in drafting this content.
Contributor
|
Thanks for opening a docs PR, Samp2Alex! When it's ready for review, please add the relevant reviewers:
|
Contributor
❌ Import check failedThis PR contains imports from Detailed issuesWhy this is a problemThe
How to fixReplace the imports as suggested above. For example:
🤖 Automated checkThis check is based on the latest analysis of |
Mirrors the Python integration. Auxen serves per-customer dedicated LLM endpoints with an OpenAI-compatible /v1/chat/completions surface, so the integration uses ChatOpenAI from @langchain/openai with a custom configuration.baseURL and apiKey — no dedicated partner package is required. The page covers credentials, instantiation, invocation, streaming, tool calling, chaining, and the open-source model catalog. Also adds an alphabetical card entry to the "All chat models" grid on the JS chat integrations index. Companion to the Python page added in the same series. AI agent (Claude) assisted in drafting this content.
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 chat-model integration pages for Auxen in both the Python and JavaScript integration sections. Auxen serves per-customer dedicated LLM endpoints (Llama 3.1/3.2, Qwen 2.5, Mistral, Gemma 2, Mixtral, Phi-3, Command R) with an OpenAI-compatible `/v1/chat/completions` surface, billed per-minute of GPU runtime rather than per-token.
Since Auxen instances implement the OpenAI wire format directly, both integrations use `ChatOpenAI` with a custom base URL and per-instance bearer token — no dedicated partner package is required. The pages position the integration accordingly: they live alongside other chat completions API endpoints documented on the existing chat integration indexes.
Changes
Companion PRs
Open to feedback on whether either page should be reshaped, or whether the team would prefer Auxen documented as a sub-section under the existing "Chat Completions API" header rather than its own dedicated page.
AI agent (Claude) assisted in drafting this PR.