Documentation

OpenClaw

OpenClaw は OpenAI API を使用します。OpenAI 互換ゲートウェイに接続してください。

クイックスタート

設定ファイルを編集します。

  • macOS / Linux:~/.openclaw/openclaw.json
  • Windows:%USERPROFILE%\.openclaw\openclaw.json
{
  "models": {
    "providers": {
      "llmpool": {
        "baseUrl": "https://api.benpay.ai/openai/v1",
        "apiKey": "YOUR_API_KEY",
        "api": "openai-completions",
        "models": [
          {
            "id": "gpt-5.5",
            "name": "LLMPool gpt-5.5",
            "reasoning": false,
            "input": ["text"],
            "contextWindow": 128000,
            "maxTokens": 8192
          }
        ]
      }
    }
  },
  "agents": {
    "defaults": {
      "model": { "primary": "llmpool/gpt-5.5" }
    }
  }
}

次のコマンドでチャットを開始します。

openclaw chat