Replies: 1 comment 11 replies
-
|
我这边更新下,目前是使用的Kimi Token Plan, 配合cc-switch, 再Claude code上只要联网搜索(web search 或者web fetch)或者调用某些mpc或者skill的状态就会大概率出现 目前通过测试,覆盖最高的Claude code 2.1.141到2.1.98版本基本上都会出现,目前测试了4台,2台WIN(Windows Terminal+Cluade Code + CC-switch),2台MAC(Iterm2 + Claude Code + CC-switch)表现为同样相同。目前的解决办法是切换模型为Haiku,使用2.1.141最新就没有问题。 多说一句,Deepseek v4在claude code上使用一切正常,所以估计还是兼容性的问题,Haiku和其他模型区别就是少了一个[1m]的标签,不知道这个是不是引发的问题根源。 |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
-
解决 Claude Code 400 错误(thinking: adaptive 不兼容)
现象:使用 CC-Switch 或第三方 API 中转时,Claude Code 返回
API Error: 400。原因:新版 Claude Code(v2.1.97+)默认对 Opus 模型发送
thinking: { type: "adaptive" }参数,但第三方服务端不支持。解决方法:在 Claude Code 中输入
/model,切换到 Sonnet (1M context) 模型即可。原理:Sonnet 模型的请求参数不包含
adaptive字段,因此能被第三方中转正常处理。Beta Was this translation helpful? Give feedback.
All reactions