From f0e14a8b5ec69ea31ba48b1ea3b054b8579c44eb Mon Sep 17 00:00:00 2001 From: Yige Date: Tue, 7 Jul 2026 15:47:06 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20DeepSeek=20=E5=AE=98?= =?UTF-8?q?=E6=96=B9=E6=A8=A1=E5=9E=8B=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新 DeepSeek 官方模型配置 --- compute/providers/deepseek.json | 101 ++++++++++++-------------------- compute/service-map.json | 2 +- manifest.json | 2 +- 3 files changed, 40 insertions(+), 65 deletions(-) diff --git a/compute/providers/deepseek.json b/compute/providers/deepseek.json index 3511800..b7c0ec9 100644 --- a/compute/providers/deepseek.json +++ b/compute/providers/deepseek.json @@ -13,6 +13,10 @@ "chat", "reasoning" ], + "tombstones": [ + "deepseek-chat", + "deepseek-reasoner" + ], "models": [ { "modelName": "deepseek-v4-flash", @@ -21,7 +25,7 @@ "chat", "reasoning" ], - "description": "DeepSeek V4 主力模型,1M 上下文,支持思考/非思考双模式,高并发(2500)", + "description": "DeepSeek V4 Flash,284B 总参数 / 13B 激活 MoE,1M 上下文,默认思考模式,支持非思考模式,并发上限 2500", "contextWindow": 1000000, "maxOutputTokens": 384000, "capabilities": [ @@ -29,17 +33,29 @@ "code", "reasoning", "deep_thinking", + "long_context", "multilingual", "tool_use" ], - "inputPrice": 1, - "outputPrice": 2, + "inputPrice": 1.008, + "outputPrice": 2.016, "defaultTemperature": 1, "defaultTopP": 1, "extra": { - "cacheHitPrice": 0.02, + "cacheHitPrice": 0.02016, + "concurrencyLimit": 2500, "supportsThinking": true, - "thinkingDefault": true + "thinkingDefault": true, + "reasoningEffort": [ + "high", + "max" + ], + "features": { + "jsonOutput": true, + "toolCalls": true, + "chatPrefixCompletion": "beta", + "fimCompletion": "non-thinking-only" + } } }, { @@ -49,7 +65,7 @@ "chat", "reasoning" ], - "description": "DeepSeek V4 旗舰模型(1.6T MoE),1M 上下文,支持思考/非思考双模式,并发上限 500", + "description": "DeepSeek V4 Pro,1.6T 总参数 / 49B 激活 MoE,1M 上下文,默认思考模式,支持非思考模式,并发上限 500", "contextWindow": 1000000, "maxOutputTokens": 384000, "capabilities": [ @@ -57,71 +73,30 @@ "code", "reasoning", "deep_thinking", + "long_context", "multilingual", "tool_use", "math" ], - "inputPrice": 3, - "outputPrice": 6, + "inputPrice": 3.132, + "outputPrice": 6.264, "defaultTemperature": 1, "defaultTopP": 1, "extra": { - "cacheHitPrice": 0.025, + "cacheHitPrice": 0.0261, + "concurrencyLimit": 500, "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 Reasoner (V4 Flash alias)", - "serviceType": [ - "reasoning" - ], - "description": "deepseek-v4-flash 思考模式的旧别名,将于 2026-07-24 弃用", - "contextWindow": 1000000, - "maxOutputTokens": 384000, - "capabilities": [ - "chat", - "reasoning", - "deep_thinking", - "code", - "math", - "tool_use" - ], - "inputPrice": 1, - "outputPrice": 2, - "extra": { - "cacheHitPrice": 0.02, - "deprecated": true, - "deprecationDate": "2026-07-24", - "replacedBy": "deepseek-v4-flash" + "thinkingDefault": true, + "reasoningEffort": [ + "high", + "max" + ], + "features": { + "jsonOutput": true, + "toolCalls": true, + "chatPrefixCompletion": "beta", + "fimCompletion": "non-thinking-only" + } } } ] diff --git a/compute/service-map.json b/compute/service-map.json index 7c2a240..a539521 100644 --- a/compute/service-map.json +++ b/compute/service-map.json @@ -4,7 +4,7 @@ "providerId": "provider-openai-001" }, "reasoning": { - "modelName": "deepseek-reasoner", + "modelName": "deepseek-v4-flash", "providerId": "provider-deepseek-001" }, "fast": { diff --git a/manifest.json b/manifest.json index 02b8111..4175f1f 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "version": "1.0.0", - "presetDataVersion": 65, + "presetDataVersion": 66, "updatedAt": "2026-07-07", "description": "DesireCore 官方配置中心" }