mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-08-07 21:08:34 +03:00
docs(providers): document Eden AI setup and WebUI parity
This commit is contained in:
@@ -268,6 +268,7 @@ Tracing covers the providers that go through nanobot's OpenAI-compatible client
|
||||
|----------|---------|-------------|
|
||||
| `custom` | Any OpenAI-compatible endpoint | — |
|
||||
| `openrouter` | LLM gateway for hosted model families + Voice transcription (STT models) | [openrouter.ai](https://openrouter.ai) |
|
||||
| `edenai` | LLM gateway for Eden AI's OpenAI-compatible model catalog | [app.edenai.run](https://app.edenai.run/) |
|
||||
| `opencode` | LLM gateway (OpenCode Zen coding-agent models) | [opencode.ai/docs/zen](https://opencode.ai/docs/zen/) |
|
||||
| `opencode_zen` | LLM gateway (legacy alias for OpenCode Zen) | [opencode.ai/docs/zen](https://opencode.ai/docs/zen/) |
|
||||
| `opencode_go` | LLM gateway (OpenCode Go low-cost coding models) | [opencode.ai/docs/go](https://opencode.ai/docs/go/) |
|
||||
|
||||
@@ -100,6 +100,39 @@ Gateway-style setup for model IDs served through OpenRouter.
|
||||
|
||||
Use the model ID exactly as OpenRouter lists it.
|
||||
|
||||
### Eden AI Gateway
|
||||
|
||||
Eden AI exposes an OpenAI-compatible chat-completions endpoint at
|
||||
`https://api.edenai.run/v3`. Configure the built-in `edenai` provider and use
|
||||
the full `provider/model` identifier listed by Eden AI:
|
||||
|
||||
```json
|
||||
{
|
||||
"providers": {
|
||||
"edenai": {
|
||||
"apiKey": "${EDENAI_API_KEY}"
|
||||
}
|
||||
},
|
||||
"modelPresets": {
|
||||
"primary": {
|
||||
"provider": "edenai",
|
||||
"model": "anthropic/claude-sonnet-4-5",
|
||||
"maxTokens": 8192
|
||||
}
|
||||
},
|
||||
"agents": {
|
||||
"defaults": {
|
||||
"modelPreset": "primary"
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Nanobot sends the model ID unchanged, including its provider prefix. Use
|
||||
Eden AI's [model listing](https://www.edenai.co/docs/v3/llms/listing-models)
|
||||
to choose a currently available model. The WebUI can also load that catalog
|
||||
after the Eden AI API key is saved under **Settings → Models**.
|
||||
|
||||
### OpenCode Zen and Go
|
||||
|
||||
OpenCode Zen and OpenCode Go are OpenCode-managed gateways for coding-agent models.
|
||||
|
||||
Reference in New Issue
Block a user