解决一下这个,自定义提供商默认不能设置思考等级 #6558
Dazzle-sys
started this conversation in
General
Replies: 1 comment
|
+1,之前我也提过一次 |
0 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.
Uh oh!
There was an error while loading. Please reload this page.
我把 DSH 安装包(~/.npm/_npx/.../node_modules/@deepseek-ai/)从设置界面一路追到适配器,结论如下。
一句话结论
不是"不支持",而是设计上故意不给服务商级别的思考等级控件,而真正管这件事的、按模型声明的字段(reasoningEfforts)又没暴露在界面上。 所以走界面创建的自定义服务商,模型永远是"不支持思考"。
证据链(从现象倒推)
1)思考等级是"按模型"的能力,唯一来源是适配器返回的元数据
dsh-llm/types/index.js 里,适配器的 resolveModelInfo 会返回 reasoning: { efforts: [...], defaultEffort },这是全系统唯一的等级来源。
2)聊天输入框的模型选择器,拿不到 metadata 就一个等级都不显示
dsh-client-ui-model-selection/lib/client.js:
All reactions