Providers

Cohere

Cohere は、Compatibility API を通じて OpenAI 互換の推論を提供します。OpenClaw は、Cohere プロバイダーの外部化移行中はこれを同梱し、公式の外部 Plugin としても公開しています。

プロパティ
プロバイダー ID cohere
Plugin 移行中は同梱、公式外部パッケージ
認証環境変数 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 トークン

組み込みカタログ

モデル参照 入力 コンテキスト 最大出力 備考
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 モデルは、2 つの Compatibility API 推論モードをサポートします。OpenClaw は offnone に、思考が有効なすべてのレベルを high にマッピングします。Command A Vision はツール使用をサポートしないため、OpenClaw はこのモデルでエージェントツールを無効のままにします。

はじめに

  1. Cohere は現在の OpenClaw パッケージに同梱されています。含まれていない場合は、外部パッケージをインストールして Gateway を再起動します。
bash
openclaw plugins install @openclaw/cohere-provideropenclaw gateway restart
  1. Cohere API キーを作成します。
  2. オンボーディングを実行します。
bash
openclaw onboard --non-interactive \  --auth-choice cohere-api-key \  --cohere-api-key "$COHERE_API_KEY"
  1. カタログが利用可能であることを確認します。
bash
openclaw models list --provider cohere

プライマリモデルがまだ設定されていない場合に限り、オンボーディングによって Cohere がプライマリモデルとして設定されます。

環境変数のみを使用した設定

COHERE_API_KEY を Gateway プロセスから利用できるようにしてから、Cohere モデルを選択します。

json5
{  agents: {    defaults: {      model: { primary: "cohere/command-a-plus-05-2026" },    },  },}

関連項目

Was this useful?
On this page

On this page