diff --git a/open-sse/config/providers/registry/deepseek/web/index.ts b/open-sse/config/providers/registry/deepseek/web/index.ts index ba20e12e0d..08fc142564 100644 --- a/open-sse/config/providers/registry/deepseek/web/index.ts +++ b/open-sse/config/providers/registry/deepseek/web/index.ts @@ -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 }, ], };