Agand_de (@agang_de)让你的oups4.6恢复思考智商正常的方法 中发帖

步骤 1:卸载你当前的 Claude Code 版本,并安装一个旧版本2.1.98
npm uninstall -g @anthropic-ai/claude-code
npm install -g @anthropic-ai/claude-code@2.1.98

步骤 2:在你的 .claude/settings.json 中添加一个变量
"env": {
  "CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING": "1"
}

这样设置之前
 [Screenshot 2026-04-17 at 16.17.49] 
应用这个设置之后
 [Screenshot 2026-04-17 at 16.22.27] 
推测可能的原理
"CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING": "1"会对模型的思考自动分配权重,有时候这种自适应分配...
 
 
Back to Top