Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/config_example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Do not paste secrets into public issues or pull requests. Configure provider cre

## Examples

- [Atlas Cloud](atlascloud.md)
- [DeepSeek](deepseek.md)

## Community Example PR Scope
Expand Down
34 changes: 34 additions & 0 deletions docs/config_example/atlascloud.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Atlas Cloud Configuration Example

## Disclaimer

This project is not affiliated with, endorsed by, or sponsored by Atlas Cloud.

## Example

```json
{
"provider": {
"atlascloud": {
"npm": "@ai-sdk/openai-compatible",
"name": "Atlas Cloud",
"options": {
"baseURL": "https://api.atlascloud.ai/v1",
"modelsDiscovery": {
"enabled": true,
"endpoint": "/models"
}
},
"models": {}
}
}
}
```

## Notes

- Configure credentials with OpenCode `/connect` when possible.
- Use `ATLASCLOUD_API_KEY` only in local private configuration; do not commit API keys.
- Atlas Cloud exposes an OpenAI-compatible model list endpoint at `/v1/models` relative to `https://api.atlascloud.ai/v1`.
- The public Atlas Cloud model catalog was checked while preparing this example and included `qwen/qwen3.5-flash` and `deepseek-ai/deepseek-v4-pro`.
- Verify the provider's current API base URL, model endpoint, pricing, data handling, regional availability, and terms before use.