Add documentation page for Eden AI integration covering CLI setup, config snippets, supported providers, and example models. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1.5 KiB
1.5 KiB
| summary | read_when | ||
|---|---|---|---|
| Use Eden AI's unified API to access many models in Clawdbot |
|
Eden AI
Eden AI provides a unified API that routes requests to many models behind a single endpoint and API key. It is OpenAI-compatible and based in Europe.
CLI setup
clawdbot onboard --auth-choice edenai-api-key
Or non-interactive:
clawdbot onboard --auth-choice apiKey --token-provider edenai --token "$EDENAI_API_KEY"
Config snippet
{
env: { EDENAI_API_KEY: "..." },
agents: {
defaults: {
model: { primary: "edenai/anthropic/claude-sonnet-4-5" }
}
}
}
Supported providers
Eden AI supports: Anthropic, OpenAI, Mistral, Google, and more.
Example models
edenai/anthropic/claude-sonnet-4-5- Claude Sonnet 4.5edenai/openai/gpt-4o- GPT-4oedenai/openai/gpt-4o-mini- GPT-4o Mini (cheaper)edenai/mistral/mistral-large-latest- Mistral Largeedenai/mistral/mistral-small-latest- Mistral Small
Notes
- Model refs are
edenai/<provider>/<model>(e.g.,edenai/openai/gpt-4o). - For more model/provider options, see /concepts/model-providers.
- Eden AI uses Bearer token authentication.