mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-06 07:12:12 +03:00
fix(deepseek-web): enable toolCalling on all models (#8889)
Validated in local merge-train T4 (HouMinXi+Zartharas+Andrian+artickc)
This commit is contained in:
@@ -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 },
|
||||
],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user