{
  "models": {
    "complex": {
      "base_url": "https://open.bigmodel.cn/api/paas/v4",
      "api_key": "your-zhipu-api-key",
      "model_name": "glm-5.1",
      "temperature": 1,
      "timeout": 600,
      "max_tokens": 16384,
      "extra_body": {
        "enable_thinking": true
      }
    },
    "standard": {
      "base_url": "https://api.deepseek.com/beta/",
      "api_key": "your-deepseek-api-key",
      "model_name": "deepseek-reasoner",
      "temperature": 0.2,
      "max_tokens": 65536,
      "timeout": 400,
      "extra_body": {
        "thinking": {"type": "enabled"}
      }
    },
    "fast": {
      "base_url": "https://api.deepseek.com/beta/",
      "api_key": "your-deepseek-api-key",
      "model_name": "deepseek-chat",
      "temperature": 0.3,
      "timeout": 300,
      "max_tokens": 8192
    }
  },
  "embedding": {
    "base_url": "https://api.siliconflow.cn/v1",
    "api_key": "your-siliconflow-api-key",
    "model_name": "BAAI/bge-large-zh-v1.5"
  },
  "default_model": "standard",
  "context_window": 128000,
  "stream_output": false
}