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