fix(deepseek-web): enable toolCalling on all models (#8889)

Validated in local merge-train T4 (HouMinXi+Zartharas+Andrian+artickc)
This commit is contained in:
Andrew B.
2026-08-05 21:52:32 -05:00
committed by GitHub
parent 48b5c7fb81
commit bf37618a61

View File

@@ -9,27 +9,49 @@ export const deepseek_webProvider: RegistryEntry = {
authType: "apikey",
authHeader: "bearer",
models: [
{ id: "deepseek-v4-pro", name: "DeepSeek V4 Pro", toolCalling: false },
{ id: "deepseek-v4-pro-think", name: "DeepSeek V4 Pro Think", supportsReasoning: true },
{ id: "deepseek-v4-pro-search", name: "DeepSeek V4 Pro Search", toolCalling: false },
{ id: "deepseek-v4-pro", name: "DeepSeek V4 Pro", toolCalling: true },
{
id: "deepseek-v4-pro-think",
name: "DeepSeek V4 Pro Think",
toolCalling: true,
supportsReasoning: true,
},
{ id: "deepseek-v4-pro-search", name: "DeepSeek V4 Pro Search", toolCalling: true },
{
id: "deepseek-v4-pro-think-search",
name: "DeepSeek V4 Pro Think+Search",
toolCalling: true,
supportsReasoning: true,
},
{ id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", toolCalling: false },
{ id: "deepseek-v4-flash-think", name: "DeepSeek V4 Flash Think", supportsReasoning: true },
{ id: "deepseek-v4-flash-search", name: "DeepSeek V4 Flash Search", toolCalling: false },
{ id: "deepseek-v4-flash", name: "DeepSeek V4 Flash", toolCalling: true },
{
id: "deepseek-v4-flash-think",
name: "DeepSeek V4 Flash Think",
toolCalling: true,
supportsReasoning: true,
},
{ id: "deepseek-v4-flash-search", name: "DeepSeek V4 Flash Search", toolCalling: true },
{
id: "deepseek-v4-flash-think-search",
name: "DeepSeek V4 Flash Think+Search",
toolCalling: true,
supportsReasoning: true,
},
{ id: "deepseek-chat", name: "DeepSeek Chat", toolCalling: false },
{ id: "deepseek-reasoner", name: "DeepSeek Reasoner", supportsReasoning: true },
{ id: "DeepSeek-R1", name: "DeepSeek R1", supportsReasoning: true },
{ id: "DeepSeek-R1-Search", name: "DeepSeek R1 Search", supportsReasoning: true },
{ id: "DeepSeek-V3.2", name: "DeepSeek V3.2", toolCalling: false },
{ id: "DeepSeek-Search", name: "DeepSeek Search", toolCalling: false },
{ id: "deepseek-chat", name: "DeepSeek Chat", toolCalling: true },
{
id: "deepseek-reasoner",
name: "DeepSeek Reasoner",
toolCalling: true,
supportsReasoning: true,
},
{ id: "DeepSeek-R1", name: "DeepSeek R1", toolCalling: true, supportsReasoning: true },
{
id: "DeepSeek-R1-Search",
name: "DeepSeek R1 Search",
toolCalling: true,
supportsReasoning: true,
},
{ id: "DeepSeek-V3.2", name: "DeepSeek V3.2", toolCalling: true },
{ id: "DeepSeek-Search", name: "DeepSeek Search", toolCalling: true },
],
};