Skip to content

Commit 17721cd

Browse files
committed
docs(atlascloud): add Atlas Cloud as OpenAI-compatible provider example
1 parent bd64619 commit 17721cd

2 files changed

Lines changed: 34 additions & 2 deletions

File tree

README-en.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Skills are discovered from these locations, in priority order:
9696

9797
- `deepseek-v4-pro` (Recommended)
9898
- `deepseek-v4-flash`
99-
- Any other OpenAI-compatible model
99+
- Any other OpenAI-compatible model — for example, [Atlas Cloud](https://www.atlascloud.ai/?utm_source=github&utm_medium=link&utm_campaign=deepcode-cli) exposes 300+ models (`deepseek-ai/DeepSeek-V3-0324`, `anthropic/claude-sonnet-4.6`, and more) through a single OpenAI-compatible endpoint
100100

101101
## FAQ
102102

@@ -131,6 +131,22 @@ Yes. Just set `env.BASE_URL` in `~/.deepcode/settings.json` to an OpenAI-compati
131131
}
132132
```
133133

134+
### Does it support Atlas Cloud?
135+
136+
Yes. [Atlas Cloud](https://www.atlascloud.ai/?utm_source=github&utm_medium=link&utm_campaign=deepcode-cli) is an OpenAI-compatible full-modal AI inference platform that provides a unified API for 300+ models across LLMs, image generation, and video generation. Example configuration:
137+
138+
```json
139+
{
140+
"env": {
141+
"MODEL": "deepseek-ai/DeepSeek-V3-0324",
142+
"BASE_URL": "https://api.atlascloud.ai/v1",
143+
"API_KEY": "your-atlascloud-api-key"
144+
}
145+
}
146+
```
147+
148+
You can also switch to Claude, Qwen, or other models — see the full list at [Atlas Cloud Models](https://www.atlascloud.ai/zh/models/list/llm). Get your API key at the [Atlas Cloud Console](https://www.atlascloud.ai/console/coding-plan).
149+
134150
### How do I configure MCP?
135151

136152
Deep Code supports MCP (Model Context Protocol) to connect external services such as GitHub, browsers, databases, and more. Configure the `mcpServers` field in `settings.json` to enable it, then use the `/mcp` command to view MCP server status and available tools.

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Skills 会按以下优先级扫描:
9595

9696
- `deepseek-v4-pro`(推荐使用)
9797
- `deepseek-v4-flash`
98-
- 任何其他 OpenAI 兼容模型
98+
- 任何其他 OpenAI 兼容模型,例如 [Atlas Cloud](https://www.atlascloud.ai/?utm_source=github&utm_medium=link&utm_campaign=deepcode-cli) 提供的 300+ 个模型(`deepseek-ai/DeepSeek-V3-0324``anthropic/claude-sonnet-4.6` 等)
9999

100100

101101
## 常见问题
@@ -147,6 +147,22 @@ Deep Code 支持 MCP(Model Context Protocol),可以连接 GitHub、浏览
147147
}
148148
```
149149

150+
### 是否支持 Atlas Cloud?
151+
152+
支持。[Atlas Cloud](https://www.atlascloud.ai/?utm_source=github&utm_medium=link&utm_campaign=deepcode-cli) 是一个 OpenAI 兼容的全模态 AI 推理平台,通过统一 API 提供 LLM、图像生成、视频生成共 300+ 个模型的接入。配置示例:
153+
154+
```json
155+
{
156+
"env": {
157+
"MODEL": "deepseek-ai/DeepSeek-V3-0324",
158+
"BASE_URL": "https://api.atlascloud.ai/v1",
159+
"API_KEY": "your-atlascloud-api-key"
160+
}
161+
}
162+
```
163+
164+
也可以使用 Claude、Qwen 等其他模型,完整模型列表见 [Atlas Cloud 模型中心](https://www.atlascloud.ai/zh/models/list/llm)。API Key 在 [Atlas Cloud 控制台](https://www.atlascloud.ai/console/coding-plan) 获取。
165+
150166
## 贡献
151167

152168
欢迎贡献代码!以下是参与方式:

0 commit comments

Comments
 (0)