OpenClaw

安装

curl -fsSL https://openclaw.ai/install.sh | bash

Provider 配置示例

如果你的版本支持多 Provider,可以直接把本站兼容地址填进去:
~/.openclaw/openclaw.json
{
  "providers": {
    "aitoken-claude": {
      "apiKey": "你的 Claude Key",
      "baseUrl": "https://api.wanlai.ai",
      "api": "anthropic-messages"
    },
    "aitoken-gpt": {
      "apiKey": "你的 GPT Key",
      "baseUrl": "https://api.wanlai.ai/v1",
      "api": "openai-responses"
    },
    "aitoken-gemini": {
      "apiKey": "你的 Gemini Key",
      "baseUrl": "https://api.wanlai.ai/v1beta",
      "api": "gemini-v1beta"
    }
  }
}

参考链接