Providers

Arcee AI

Arcee AI は、OpenAI互換APIを通じて mixture-of-experts モデルの Trinity ファミリーを提供します。すべての Trinity モデルは Apache 2.0 ライセンスです。Arcee は公式の OpenClaw Pluginであり、coreにはバンドルされていないため、オンボーディングの前にインストール手順が必要です。

Arcee モデルには、Arcee プラットフォームから直接アクセスするか、OpenRouter 経由でアクセスできます。

プロパティ
プロバイダー arcee
認証 ARCEEAI_API_KEY (直接) または OPENROUTER_API_KEY (OpenRouter経由)
API OpenAI互換
ベースURL https://api.arcee.ai/api/v1 (直接) または https://openrouter.ai/api/v1 (OpenRouter)

Pluginをインストール

bash
openclaw plugins install @openclaw/arcee-provideropenclaw gateway restart

はじめに

直接 (Arcee プラットフォーム)

  • APIキーを取得

    Arcee AI でAPIキーを作成します。

  • オンボーディングを実行

    bash
    openclaw onboard --auth-choice arceeai-api-key
  • デフォルトモデルを設定

    json5
    {  agents: {    defaults: {      model: { primary: "arcee/trinity-large-thinking" },    },  },}
  • OpenRouter経由

  • APIキーを取得

    OpenRouter でAPIキーを作成します。

  • オンボーディングを実行

    bash
    openclaw onboard --auth-choice arceeai-openrouter
  • デフォルトモデルを設定

    json5
    {  agents: {    defaults: {      model: { primary: "arcee/trinity-large-thinking" },    },  },}

    同じモデルrefは、直接設定とOpenRouter設定の両方で動作します。

  • 非対話セットアップ

    直接 (Arcee プラットフォーム)

    bash
    openclaw onboard --non-interactive \  --mode local \  --auth-choice arceeai-api-key \  --arceeai-api-key "$ARCEEAI_API_KEY"

    OpenRouter経由

    bash
    openclaw onboard --non-interactive \  --mode local \  --auth-choice arceeai-openrouter \  --openrouter-api-key "$OPENROUTER_API_KEY"

    組み込みカタログ

    モデルref 名前 入力 コンテキスト 最大出力 コスト (100万あたりの入力/出力) ツール 注記
    arcee/trinity-large-thinking Trinity Large Thinking テキスト 256K 80K $0.25 / $0.90 いいえ デフォルトモデル、拡張思考
    arcee/trinity-large-preview Trinity Large Preview テキスト 128K 16K $0.25 / $1.00 はい 汎用、400Bパラメーター、13Bアクティブ
    arcee/trinity-mini Trinity Mini 26B テキスト 128K 80K $0.045 / $0.15 はい 高速かつコスト効率が高い、関数呼び出し

    サポートされる機能

    機能 サポート
    ストリーミング はい
    ツール使用 / 関数呼び出し はい (Trinity Mini、Trinity Large Preview)
    構造化出力 (JSONモードとJSONスキーマ) はい
    拡張思考 はい (Trinity Large Thinking、ツールは無効)
    環境に関する注記

    Gateway がデーモン (launchd/systemd) として実行される場合は、ARCEEAI_API_KEY (または OPENROUTER_API_KEY) がそのプロセスで利用可能であることを確認してください。たとえば、 ~/.openclaw/.env または env.shellEnv 経由で設定します。

    OpenRouterルーティング

    OpenRouter経由でArceeモデルを使用する場合も、同じ arcee/* モデルrefが適用されます。 OpenClaw は認証の選択に基づいて透過的にルーティングします。OpenRouter固有の 設定詳細については、OpenRouterプロバイダードキュメント を参照してください。

    関連

    Was this useful?
    On this page

    On this page