feat: add Atlas Cloud as an OpenAI-compatible LLM provider#12759
Open
lucaszhu-hue wants to merge 1 commit into
Open
feat: add Atlas Cloud as an OpenAI-compatible LLM provider#12759lucaszhu-hue wants to merge 1 commit into
lucaszhu-hue wants to merge 1 commit into
Conversation
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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 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
This PR adds Atlas Cloud as a new LLM provider. Atlas Cloud is an OpenAI-compatible API gateway that provides access to 300+ open-source and frontier models (DeepSeek, Llama, Qwen, and more).
Implementation mirrors the existing OpenAI-compatible providers (e.g.
Tensorix,Deepseek):AtlasCloudextends theOpenAIbase class and only overridesapiBase(https://api.atlascloud.ai/v1/) and the default model (deepseek-ai/deepseek-v4-pro). The API key is supplied via the standardapiKeyconfig field.Changes
core/llm/llms/AtlasCloud.ts— new provider class extendingOpenAIcore/llm/llms/index.ts— register the providercore/llm/autodetect.ts— add to templating/parallel provider listspackages/openai-adapters/src/index.ts+types.ts— OpenAI-compatible adapter mappinggui/src/pages/AddNewModel/configs/providers.ts— Add Model UI entryextensions/vscode/config_schema.json— config schema enum + descriptiondocs/docs.json+docs/customize/model-providers/more/atlascloud.mdx— provider docsNotes
apiKeyfield.Summary by cubic
Adds Atlas Cloud as an OpenAI‑compatible LLM provider. You can now choose
atlascloudto use 300+ models viahttps://api.atlascloud.ai/v1/(default: DeepSeek V4 Pro).AtlasCloudclass extends OpenAI and defines api base and default model.packages/openai-adaptersmapsatlascloudto the OpenAI-compatible adapter.apiKey.Written for commit 50918a3. Summary will update on new commits.