Published on

Pi-Agent 思考等级设置

Authors

配置示例

{
  "providers": {
    "my-vllm": {
      "baseUrl": "http://your-server-ip:port/v1",
      "api": "openai-completions",
      "apiKey": "your-api-key",
      "compat": {
        "supportsDeveloperRole": false,
        "thinkingFormat": "chat-template",
        "chatTemplateKwargs": {
          "enable_thinking": {
            "$var": "thinking.enabled"
          },
          "reasoning_effort": {
            "$var": "thinking.effort",
            "omitWhenOff": true
          }
        }
      },
      "models": [
        {
          "id": "lagunasx21",
          "reasoning": true,
          "thinkingLevelMap": {
            "minimal": "low"
          }
        },
        {
          "id": "sales-agent-test",
          "reasoning": true,
          "thinkingLevelMap": {
            "minimal": "low"
          }
        }
      ]
    }
  }
}