500 Unable to submit request because Thinking_config.include_thoughts is only en...
🚨 错误信息
500 Unable to submit request because Thinking_config.include_thoughts is only enabled when thinking is enabled.. Learn more: https://***/***/***/***/***/*** (request id: 20250906134337789770145BLASlYis)
🤖 AI解决方案
1. 错误翻译
500 无法提交请求,因为 Thinking_config.include_thoughts 仅在 thinking 启用时才能启用。
2. 原因分析
Thinking_config.include_thoughts 配置项需要 thinking 配置项也同时启用才能生效。当前 thinking 未启用,导致该配置无法生效。
3. 解决方案
请在请求中启用 thinking 配置项,或者禁用 Thinking_config.include_thoughts 配置项。
示例(启用 thinking):
{
"thinking": true,
"Thinking_config": {
"include_thoughts": true
},
// ... 其他配置
}
示例(禁用 Thinking_config.include_thoughts):
{
"thinking": false, // 或保持默认
"Thinking_config": {
"include_thoughts": false
},
// ... 其他配置
}
4. 预防措施
- 在配置
Thinking_config相关的选项前,请先确认其依赖项(如thinking)已正确配置。 - 仔细阅读API文档中关于配置项之间依赖关系的说明。