From 161eb04d39db5febe337414d5e4ff6811cbae35a Mon Sep 17 00:00:00 2001 From: xyx <124608760@qq.com> Date: Thu, 28 May 2026 14:50:28 +0800 Subject: [PATCH] =?UTF-8?q?fix(deepseek):=20=E6=9B=B4=E6=96=B0=20DeepSeek?= =?UTF-8?q?=20=E6=A8=A1=E5=9E=8B=E8=87=B3=20V4=20=E7=B3=BB=E5=88=97?= =?UTF-8?q?=EF=BC=8C=E4=BF=AE=E6=AD=A3=E4=BB=B7=E6=A0=BC=E4=B8=8E=E5=8F=82?= =?UTF-8?q?=E6=95=B0=20(#28)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 deepseek-v4-flash(主力)和 deepseek-v4-pro(旗舰) - 上下文窗口 128K → 1M,最大输出 8K/64K → 384K - 价格更新:V4 Flash 输入 1 元/M 输出 2 元/M;V4 Pro 输入 3 元/M 输出 6 元/M - 保留 deepseek-chat / deepseek-reasoner 作为旧别名(标记 2026-07-24 弃用) - bump presetDataVersion to 52 Co-authored-by: Yige --- compute/providers/deepseek.json | 101 ++++++++++++++++++++++++++------ manifest.json | 4 +- 2 files changed, 85 insertions(+), 20 deletions(-) diff --git a/compute/providers/deepseek.json b/compute/providers/deepseek.json index a8f513d..3511800 100644 --- a/compute/providers/deepseek.json +++ b/compute/providers/deepseek.json @@ -15,48 +15,113 @@ ], "models": [ { - "modelName": "deepseek-chat", - "displayName": "DeepSeek V3.2", + "modelName": "deepseek-v4-flash", + "displayName": "DeepSeek V4 Flash", "serviceType": [ - "chat" + "chat", + "reasoning" ], - "description": "高性价比通用对话模型,128K 上下文", - "contextWindow": 128000, - "maxOutputTokens": 8192, + "description": "DeepSeek V4 主力模型,1M 上下文,支持思考/非思考双模式,高并发(2500)", + "contextWindow": 1000000, + "maxOutputTokens": 384000, "capabilities": [ "chat", "code", "reasoning", - "multilingual" + "deep_thinking", + "multilingual", + "tool_use" ], - "inputPrice": 2, - "outputPrice": 3, + "inputPrice": 1, + "outputPrice": 2, "defaultTemperature": 1, "defaultTopP": 1, "extra": { - "cacheHitPrice": 0.2 + "cacheHitPrice": 0.02, + "supportsThinking": true, + "thinkingDefault": true + } + }, + { + "modelName": "deepseek-v4-pro", + "displayName": "DeepSeek V4 Pro", + "serviceType": [ + "chat", + "reasoning" + ], + "description": "DeepSeek V4 旗舰模型(1.6T MoE),1M 上下文,支持思考/非思考双模式,并发上限 500", + "contextWindow": 1000000, + "maxOutputTokens": 384000, + "capabilities": [ + "chat", + "code", + "reasoning", + "deep_thinking", + "multilingual", + "tool_use", + "math" + ], + "inputPrice": 3, + "outputPrice": 6, + "defaultTemperature": 1, + "defaultTopP": 1, + "extra": { + "cacheHitPrice": 0.025, + "supportsThinking": true, + "thinkingDefault": true + } + }, + { + "modelName": "deepseek-chat", + "displayName": "DeepSeek Chat (V4 Flash alias)", + "serviceType": [ + "chat" + ], + "description": "deepseek-v4-flash 非思考模式的旧别名,将于 2026-07-24 弃用", + "contextWindow": 1000000, + "maxOutputTokens": 384000, + "capabilities": [ + "chat", + "code", + "reasoning", + "multilingual", + "tool_use" + ], + "inputPrice": 1, + "outputPrice": 2, + "defaultTemperature": 1, + "defaultTopP": 1, + "extra": { + "cacheHitPrice": 0.02, + "deprecated": true, + "deprecationDate": "2026-07-24", + "replacedBy": "deepseek-v4-flash" } }, { "modelName": "deepseek-reasoner", - "displayName": "DeepSeek R1", + "displayName": "DeepSeek Reasoner (V4 Flash alias)", "serviceType": [ "reasoning" ], - "description": "DeepSeek V3.2 思考模式,128K 上下文,思维链默认 32K,最大输出 64K", - "contextWindow": 128000, - "maxOutputTokens": 65536, + "description": "deepseek-v4-flash 思考模式的旧别名,将于 2026-07-24 弃用", + "contextWindow": 1000000, + "maxOutputTokens": 384000, "capabilities": [ "chat", "reasoning", "deep_thinking", "code", - "math" + "math", + "tool_use" ], - "inputPrice": 4, - "outputPrice": 16, + "inputPrice": 1, + "outputPrice": 2, "extra": { - "cacheHitPrice": 0.2 + "cacheHitPrice": 0.02, + "deprecated": true, + "deprecationDate": "2026-07-24", + "replacedBy": "deepseek-v4-flash" } } ] diff --git a/manifest.json b/manifest.json index e018bcb..aeadc14 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "version": "1.0.0", - "presetDataVersion": 52, - "updatedAt": "2026-05-26", + "presetDataVersion": 53, + "updatedAt": "2026-05-27", "description": "DesireCore 官方配置中心" }