创建渠道选择“高级自定义”

配置路由

{
  "advanced_routes": [
    {
      "incoming_path": "/v1/chat/completions",
      "upstream_path": "/v2/chat/completions",
      "converter": "none",
      "auth": {
        "type": "header",
        "name": "Authorization",
        "value": "Bearer {api_key}"
      }
    },
    {
      "incoming_path": "/v1/responses",
      "upstream_path": "/v2/responses",
      "converter": "none",
      "auth": {
        "type": "header",
        "name": "Authorization",
        "value": "Bearer {api_key}"
      }
    },
    {
      "incoming_path": "/v1/messages",
      "upstream_path": "/anthropic/v1/messages",
      "converter": "none",
      "auth": {
        "type": "header",
        "name": "x-api-key",
        "value": "{api_key}"
      }
    }
  ]
}