Providers
Cohere
Cohere provides OpenAI-compatible inference through its Compatibility API. OpenClaw includes a bundled Cohere provider plugin with the Command A model catalog.
| Property | Value |
|---|---|
| Provider id | cohere |
| Plugin | bundled, enabledByDefault: true |
| Auth env var | COHERE_API_KEY |
| Onboarding flag | --auth-choice cohere-api-key |
| Direct CLI flag | --cohere-api-key <key> |
| API | OpenAI-compatible (openai-completions) |
| Base URL | https://api.cohere.ai/compatibility/v1 |
| Default model | cohere/command-a-03-2025 |
Get started
- Create a Cohere API key.
- Run onboarding:
openclaw onboard --non-interactive \ --auth-choice cohere-api-key \ --cohere-api-key "$COHERE_API_KEY"- Confirm the catalog is available:
openclaw models list --provider cohereThe default model is set only when no primary model is already configured.
Environment-only setup
Make COHERE_API_KEY available to the Gateway process, then select the bundled model:
{ agents: { defaults: { model: { primary: "cohere/command-a-03-2025" }, }, },}Related
Was this useful?