メインコンテンツへスキップ

Together AI

Together AIは、統一APIを通じてLlama、DeepSeek、Kimiなどの主要なオープンソースモデルへのアクセスを提供します。
  • プロバイダー: together
  • 認証: TOGETHER_API_KEY
  • API: OpenAI互換
  • ベースURL: https://api.together.xyz/v1

クイックスタート

  1. APIキーを設定します(推奨: Gateway用に保存します):
openclaw onboard --auth-choice together-api-key
  1. デフォルトモデルを設定します:
{
  agents: {
    defaults: {
      model: { primary: "together/moonshotai/Kimi-K2.5" },
    },
  },
}

非対話型の例

openclaw onboard --non-interactive \
  --mode local \
  --auth-choice together-api-key \
  --together-api-key "$TOGETHER_API_KEY"
これにより、together/moonshotai/Kimi-K2.5がデフォルトモデルとして設定されます。

環境に関する注意

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

組み込みカタログ

OpenClawには現在、次のTogetherカタログがバンドルされています。
Model refNameInputContextNotes
together/moonshotai/Kimi-K2.5Kimi K2.5text, image262,144デフォルトモデル; reasoning有効
together/zai-org/GLM-4.7GLM 4.7 Fp8text202,752汎用テキストモデル
together/meta-llama/Llama-3.3-70B-Instruct-TurboLlama 3.3 70B Instruct Turbotext131,072高速な指示モデル
together/meta-llama/Llama-4-Scout-17B-16E-InstructLlama 4 Scout 17B 16E Instructtext, image10,000,000マルチモーダル
together/meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8Llama 4 Maverick 17B 128E Instruct FP8text, image20,000,000マルチモーダル
together/deepseek-ai/DeepSeek-V3.1DeepSeek V3.1text131,072汎用テキストモデル
together/deepseek-ai/DeepSeek-R1DeepSeek R1text131,072reasoningモデル
together/moonshotai/Kimi-K2-Instruct-0905Kimi K2-Instruct 0905text262,144セカンダリKimiテキストモデル
オンボーディングのプリセットでは、together/moonshotai/Kimi-K2.5がデフォルトモデルとして設定されます。

動画生成

バンドルされたtogetherプラグインは、共有のvideo_generateツールを通じた動画生成も登録します。
  • デフォルト動画モデル: together/Wan-AI/Wan2.2-T2V-A14B
  • モード: テキストから動画、および単一画像参照フロー
  • aspectRatioresolutionをサポート
Togetherをデフォルトの動画プロバイダーとして使うには:
{
  agents: {
    defaults: {
      videoGenerationModel: {
        primary: "together/Wan-AI/Wan2.2-T2V-A14B",
      },
    },
  },
}
共有ツールのパラメーター、プロバイダー選択、およびフェイルオーバー動作については、Video Generationを参照してください。