.Algo.InvalidParameter: The value of the enable_thinking parameter is restricted...

2025年09月04日 00:20 响应: 13.68秒 状态: success

🚨 错误信息

400 <400> InternalError.Algo.InvalidParameter: The value of the enable_thinking parameter is restricted to True. (request id: 20250810001712381058311OW41lF59)

🤖 AI解决方案

400 <400> InternalError.Algo.InvalidParameter: enable_thinking 参数的值被限制为 True。 (request id: 20250810001712381058311OW41lF59)

原因分析

enable_thinking 参数只接受布尔值 True,而你传入了其他值。

解决方案

确保在调用 API 时,enable_thinking 参数的值被设置为 True

例如(以 Python 为例):

# 假设这是你的 API 调用
response = dmxapi.call(
    ...,
    enable_thinking=True,
    ...
)

预防措施

  • 在调用 API 前,仔细检查所有参数的类型和允许值,参考 API 文档。
  • 使用断言或条件判断来验证参数的有效性,尤其是在处理用户输入或动态生成参数时。