常见模型如何关闭思考模式 📅 2026/8/14 23:36:30 关闭思考主要是为了让模型响应快一些但是内容质量肯定会有所下降。千问文档https://platform.qianwenai.com/docs/developer-guides/text-generation/thinkingcompletionclient.chat.completions.create(modelqwen3.7-plus,messages[{role:user,content:If 3x 7 22, what is x?}],extra_body{enable_thinking:True},# ← enable thinkingstreamTrue,)支持模型Qwen3.8 Max 系列混合模式默认开启qwen3.8-max Qwen3.7 Max 系列混合模式默认开启qwen3.7-max、qwen3.7-max-2026-06-08、qwen3.7-max-2026-05-20 Max 系列仅支持思考模式qwen3.7-max-preview、qwen3.7-max-2026-05-17 Plus 系列混合模式默认开启qwen3.7-plus、qwen3.7-plus-2026-05-26 Flash 系列混合模式默认开启thinking_budget 上限 256Kqwen3.7-flash、qwen3.7-flash-2026-07-15 Qwen3.6 Max 系列混合模式默认开启qwen3.6-max-preview Plus 系列混合模式默认开启qwen3.6-plus、qwen3.6-plus-2026-04-02 Flash 系列混合模式默认开启thinking_budget 上限 128Kqwen3.6-flash、qwen3.6-flash-2026-04-16 开源版qwen3.6-35b-a3b Qwen3.5 商业版 Plus 系列混合模式默认开启qwen3.5-plus、qwen3.5-plus-2026-02-15 Flash 系列混合模式默认开启qwen3.5-flash、qwen3.5-flash-2026-02-23 开源版 混合模式默认开启qwen3.5-397b-a17b、qwen3.5-122b-a10b、qwen3.5-27b、qwen3.5-35b-a3b Qwen3 商业版 Max 系列混合模式默认关闭qwen3-max、qwen3-max-2026-01-23、qwen3-max-preview Plus 系列混合模式默认关闭qwen-plus、qwen-plus-latest、qwen-plus-2025-04-28 及之后的快照版模型 Flash 系列混合模式默认关闭qwen-flash、qwen-flash-2025-07-28 及之后的快照版模型 Turbo 系列混合模式默认关闭qwen-turbo 及之后的快照版模型 开源版 混合模式默认开启qwen3-235b-a22b、qwen3-32b、qwen3-30b-a3b、qwen3-14b、qwen3-8b 纯推理模式qwen3-next-80b-a3b-thinking、qwen3-235b-a22b-thinking-2507、qwen3-30b-a3b-thinking-2507 QwQ基于 Qwen2.5 纯推理模式qwq-plus DeepSeek 千问AI平台部署 混合模式默认开启deepseek-v4-pro、deepseek-v4-flash、deepseek-v4-flash-0731 混合模式默认关闭deepseek-v3.2、deepseek-v3.2-exp、deepseek-v3.1 纯推理模式deepseek-r1、deepseek-r1-0528、DeepSeek-R1 蒸馏模型 硅基流动部署 混合模式默认关闭siliconflow/deepseek-v3.2、siliconflow/deepseek-v3.1-terminus 纯推理模式siliconflow/deepseek-r1-0528 快手万擎部署 混合模式默认关闭vanchin/deepseek-v3.2-think、vanchin/deepseek-v3.1-terminus 纯推理模式vanchin/deepseek-r1 GLM 混合模式默认开启glm-5.2、glm-5.2-fast-preview、glm-5.1、glm-5、glm-4.7、glm-4.6、glm-4.5、glm-4.5-air Kimi 千问AI平台部署 仅思考模式kimi-k2.7-code 混合模式默认关闭kimi-k2.6、kimi-k2.5 纯推理模式kimi-k2-thinking 月之暗面部署 仅思考模式kimi/kimi-k3、kimi/kimi-k2.7-code-highspeed、kimi/kimi-k2.7-code 混合模式默认开启kimi/kimi-k2.6、kimi/kimi-k2.5 MiniMax 千问AI平台部署 纯推理模式MiniMax-M2.5、MiniMax-M2.1 MiniMax 部署 混合思考模式MiniMax/MiniMax-M3 MiniMax/MiniMax-M3 通过 thinking 参数控制思考模式取值为 adaptive自适应默认或 disabled关闭。详细用法请参见 MiniMax-稀宇科技。 纯推理模式MiniMax/MiniMax-M2.7、MiniMax/MiniMax-M2.5、MiniMax/MiniMax-M2.1 Stepfun 混合思考模式stepfun/step-3.7-flashDeepSeekAPI文档https://api-docs.deepseek.com/zh-cn/guides/thinking_modeOpenai格式Anthropic格式思考开关{“thinking”: {“type”: “enabled/disabled”}}同openai思考强度{“reasoning_effort”: “low/high/max”}{“output_config”: {“effort”: “low/high/max”}}responseclient.chat.completions.create(modeldeepseek-v4-pro,# ...reasoning_efforthigh,extra_body{thinking:{type:enabled}})minimaxAPI文档https://platform.minimaxi.com/docs/api-reference/text-chat-openai#body-thinkingChat Completions API控制参数thinkingdisabled让 MiniMax-M3 跳过 thinking 并直接回答。对于 M2.x 模型thinking 仍会保持开启。adaptive为 MiniMax-M3 开启 adaptive thinking。省略 thinking 时默认使用该值。curl--requestPOST\--urlhttps://api.minimaxi.com/v1/chat/completions\--headerAuthorization: Bearer token\--headerContent-Type: application/json\--data { model: MiniMax-M3, messages: [ { role: user, content: [ { type: text, text: 这张图片的内容是什么 }, { type: image_url, image_url: { url: https://filecdn.minimax.chat/public/fe9d04da-f60e-444d-a2e0-18ae743add33.jpeg } } ] } ], thinking: { type: adaptive }, max_completion_tokens: 500 } Chat Responses API控制参数reasoning.effort默认值:none可用选项:minimallowmediumhighnoneGLMAPI文档https://docs.bigmodel.cn/cn/guide/capabilities/thinking-mode控制参数thinking.typeenabled,disabledthinking:{type:disabled}