feat: add Crusoe model provider - #13136
Open
acheamponge wants to merge 1 commit into
Open
Conversation
Contributor
|
All contributors have signed the CLA ✍️ ✅ |
Author
|
recheck |
Author
|
I have read the CLA Document and I hereby sign the CLA |
6 tasks
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.
Description
Adds Crusoe Managed Inference as a model provider, mirroring the existing Nebius provider layout.
Crusoe provides Managed Inference, an OpenAI-compatible API for open-weight models (GLM 5.2, DeepSeek V3, gpt-oss-120b, Gemma 4, Kimi K2.6, Llama 3.3) on Crusoe's vertically integrated AI cloud. Crusoe is already a supported provider in LiteLLM, Pydantic AI, Pipecat, aisuite, the Vercel AI SDK, and the models.dev registry.
Changes
core/llm/llms/Crusoe.ts: provider class extending OpenAI with the Crusoe base URL (same shape asNous.ts/Nebius.ts)core/llm/llms/index.ts: registrationcore/llm/autodetect.ts: addedcrusoealongsidenebiusin the templating, images, and parallel-providers listsdocs/customize/model-providers/more/crusoe.mdx+docs/docs.json: provider docs page and nav entrygui/.../configs/models.ts+providers.ts: Add New Model entries (GLM 5.2, Gemma 4 31B, and a Crusoe option on the existing gpt-oss-120b package)Testing
The provider class is a direct mirror of
Nous.ts/Nebius.ts, which pass through to the OpenAI implementation. The Crusoe endpoint itself has been verified OpenAI-compatible against the live API (chat, streaming, and tool-call requests, including for the models.dev entry). I have not run the Continue extension end-to-end against it, so happy to make any changes if something needs adjusting, and to run any additional verification you want.