feat(cli): /config support set enable_thinking

This commit is contained in:
zhayujie
2026-04-17 16:09:43 +08:00
parent 13370d2056
commit 26e630c2dd
5 changed files with 6 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ description: 自定义厂商配置,适用于第三方 API 代理和本地模
```json
{
"bot_type": "custom",
"model": "deepseek-chat",
"model": "",
"custom_api_key": "YOUR_API_KEY",
"custom_api_base": "https://{your-proxy.com}/v1"
}
@@ -29,7 +29,7 @@ description: 自定义厂商配置,适用于第三方 API 代理和本地模
| 参数 | 说明 |
| --- | --- |
| `bot_type` | 必须设为 `custom` |
| `model` | 模型名称,填写代理服务支持的任意模型名 |
| `model` | 模型名称,填写代理服务支持的任意模型名 |
| `custom_api_key` | API 密钥,由代理服务提供 |
| `custom_api_base` | API 地址,由代理服务提供,需兼容 OpenAI 协议 |