docs: document Atlas Cloud via the custom OpenAI-compatible adapter#132
Merged
chauncygu merged 1 commit intoJun 4, 2026
Merged
Conversation
Atlas Cloud exposes an OpenAI-compatible API, so it works with the existing zero-dependency `custom/` adapter (CUSTOM_BASE_URL + CUSTOM_API_KEY) with no code changes. Add an Atlas Cloud subsection to the README and a commented example to .env.example. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
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.
Summary
CheetahClaws already supports "any OpenAI-compatible endpoint" through the zero-dependency
custom/adapter (CUSTOM_BASE_URL+CUSTOM_API_KEY). Atlas Cloud is a hosted OpenAI-compatible platform (DeepSeek, Qwen, GLM, Kimi, MiniMax, …), so it drops straight in — no code change.README.md: an "Atlas Cloud (hosted, OpenAI-compatible)" subsection after the vLLM/self-hosted section, with thecustom/invocation and a collapsed list of all available Atlas chat models..env.example: a commented Atlas Cloud example usingCUSTOM_BASE_URL/CUSTOM_API_KEY.Validation
Docs /
.env.exampleonly — no Python paths changed.The
custom/adapter calls the endpoint via the OpenAI SDK, so I validated that exact path against Atlas:OpenAI(base_url="https://api.atlascloud.ai/v1").chat.completions.create(model="deepseek-ai/deepseek-v4-pro", ...)returns a valid completion (HTTP 200,finish_reason=stop).deepseek-ai/deepseek-v4-prois a reasoning model, so the example leavesmax_tokensat the default-generous setting.Notes
Providers here are documented as text (no per-provider logos), so I kept the Atlas entry text + link to match the existing style. Examples use placeholder keys only. Happy to adjust wording or placement.
🤖 Generated with Claude Code