From 5a2d2aa85b1d38727820eb406b926b7f277a160f Mon Sep 17 00:00:00 2001 From: sam Date: Tue, 27 Jan 2026 19:27:52 +0100 Subject: [PATCH] docs: add Eden AI provider documentation Add documentation page for Eden AI integration covering CLI setup, config snippets, supported providers, and example models. Co-Authored-By: Claude Opus 4.5 --- docs/docs.json | 9 ++++++ docs/providers/edenai.md | 60 ++++++++++++++++++++++++++++++++++++++++ docs/providers/index.md | 1 + 3 files changed, 70 insertions(+) create mode 100644 docs/providers/edenai.md diff --git a/docs/docs.json b/docs/docs.json index a676004f6..0ddc09433 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -117,6 +117,14 @@ "source": "/opencode/", "destination": "/providers/opencode" }, + { + "source": "/edenai", + "destination": "/providers/edenai" + }, + { + "source": "/edenai/", + "destination": "/providers/edenai" + }, { "source": "/mattermost", "destination": "/channels/mattermost" @@ -1029,6 +1037,7 @@ "providers/minimax", "providers/vercel-ai-gateway", "providers/openrouter", + "providers/edenai", "providers/synthetic", "providers/opencode", "providers/glm", diff --git a/docs/providers/edenai.md b/docs/providers/edenai.md new file mode 100644 index 000000000..71418e93f --- /dev/null +++ b/docs/providers/edenai.md @@ -0,0 +1,60 @@ +--- +summary: "Use Eden AI's unified API to access many models in Clawdbot" +read_when: + - You want a European multi-provider API gateway + - You want a single API key for many LLMs +--- +# 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 + +```bash +clawdbot onboard --auth-choice edenai-api-key +``` + +Or non-interactive: + +```bash +clawdbot onboard --auth-choice apiKey --token-provider edenai --token "$EDENAI_API_KEY" +``` + +## Config snippet + +```json5 +{ + 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.5 +- `edenai/openai/gpt-4o` - GPT-4o +- `edenai/openai/gpt-4o-mini` - GPT-4o Mini (cheaper) +- `edenai/mistral/mistral-large-latest` - Mistral Large +- `edenai/mistral/mistral-small-latest` - Mistral Small + +## Notes + +- Model refs are `edenai//` (e.g., `edenai/openai/gpt-4o`). +- For more model/provider options, see [/concepts/model-providers](/concepts/model-providers). +- Eden AI uses Bearer token authentication. + +## Links + +- [Eden AI website](https://www.edenai.co/) +- [Eden AI documentation](https://docs.edenai.co/) +- [Supported models](https://app.edenai.run/models) +- [Get your API key](https://app.edenai.run/admin/account/settings) diff --git a/docs/providers/index.md b/docs/providers/index.md index b2793ee22..8574c0003 100644 --- a/docs/providers/index.md +++ b/docs/providers/index.md @@ -37,6 +37,7 @@ See [Venice AI](/providers/venice). - [Anthropic (API + Claude Code CLI)](/providers/anthropic) - [Qwen (OAuth)](/providers/qwen) - [OpenRouter](/providers/openrouter) +- [Eden AI](/providers/edenai) - [Vercel AI Gateway](/providers/vercel-ai-gateway) - [Moonshot AI (Kimi + Kimi Code)](/providers/moonshot) - [OpenCode Zen](/providers/opencode)