快速开始
Cohere
Cohere 通过其兼容性 API 提供与 OpenAI 兼容的推理服务。在外部化过渡期间,OpenClaw 内置 Cohere provider,同时也将其作为官方外部插件发布。
| 属性 | 值 |
|---|---|
| 提供商 ID | cohere |
| 插件 | 过渡期间内置;官方外部软件包 |
| 身份验证环境变量 | COHERE_API_KEY |
| 新手引导标志 | --auth-choice cohere-api-key |
| 直接 CLI 标志 | --cohere-api-key <key> |
| API | 与 OpenAI 兼容(openai-completions) |
| 基础 URL | https://api.cohere.ai/compatibility/v1 |
| 默认模型 | cohere/command-a-plus-05-2026 |
| 上下文窗口 | 128,000 个 token |
内置目录
| 模型引用 | 输入 | 上下文 | 最大输出 | 说明 |
|---|---|---|---|---|
cohere/command-a-plus-05-2026 |
文本、图像 | 128,000 | 64,000 | 默认;旗舰智能体与推理模型 |
cohere/command-a-03-2025 |
文本 | 256,000 | 8,000 | 上一代 Command A 模型 |
cohere/command-a-reasoning-08-2025 |
文本 | 256,000 | 32,000 | 智能体推理与工具使用 |
cohere/command-a-vision-07-2025 |
文本、图像 | 128,000 | 8,000 | 视觉与文档分析;不支持工具使用 |
cohere/north-mini-code-1-0 |
文本、图像 | 256,000 | 64,000 | 智能体编程;推理;免费额度限制 |
具备推理能力的 Cohere 模型支持两种兼容性 API 推理模式。OpenClaw 将 关闭 映射为 none,并将所有启用的思考级别映射为 high。Command A Vision 不支持工具使用,因此 OpenClaw 会为该模型禁用智能体工具。
入门指南
- 当前 OpenClaw 软件包已包含 Cohere。如果缺失,请安装外部软件包并重启 Gateway 网关:
openclaw plugins install @openclaw/cohere-provideropenclaw gateway restart- 创建 Cohere API key。
- 运行新手引导:
openclaw onboard --non-interactive \ --auth-choice cohere-api-key \ --cohere-api-key "$COHERE_API_KEY"- 确认目录可用:
openclaw models list --provider cohere仅当尚未配置主模型时,新手引导才会将 Cohere 设置为主模型。
仅使用环境变量设置
让 Gateway 网关进程能够访问 COHERE_API_KEY,然后选择 Cohere 模型:
{ agents: { defaults: { model: { primary: "cohere/command-a-plus-05-2026" }, }, },}相关内容
Was this useful?