Skip to content

Commit 161eb04

Browse files
124608760yi-ge
andauthored
fix(deepseek): 更新 DeepSeek 模型至 V4 系列,修正价格与参数 (#28)
- 新增 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 <a@wyr.me>
1 parent 55f948a commit 161eb04

2 files changed

Lines changed: 83 additions & 18 deletions

File tree

compute/providers/deepseek.json

Lines changed: 81 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,49 +14,114 @@
1414
"reasoning"
1515
],
1616
"models": [
17+
{
18+
"modelName": "deepseek-v4-flash",
19+
"displayName": "DeepSeek V4 Flash",
20+
"serviceType": [
21+
"chat",
22+
"reasoning"
23+
],
24+
"description": "DeepSeek V4 主力模型,1M 上下文,支持思考/非思考双模式,高并发(2500)",
25+
"contextWindow": 1000000,
26+
"maxOutputTokens": 384000,
27+
"capabilities": [
28+
"chat",
29+
"code",
30+
"reasoning",
31+
"deep_thinking",
32+
"multilingual",
33+
"tool_use"
34+
],
35+
"inputPrice": 1,
36+
"outputPrice": 2,
37+
"defaultTemperature": 1,
38+
"defaultTopP": 1,
39+
"extra": {
40+
"cacheHitPrice": 0.02,
41+
"supportsThinking": true,
42+
"thinkingDefault": true
43+
}
44+
},
45+
{
46+
"modelName": "deepseek-v4-pro",
47+
"displayName": "DeepSeek V4 Pro",
48+
"serviceType": [
49+
"chat",
50+
"reasoning"
51+
],
52+
"description": "DeepSeek V4 旗舰模型(1.6T MoE),1M 上下文,支持思考/非思考双模式,并发上限 500",
53+
"contextWindow": 1000000,
54+
"maxOutputTokens": 384000,
55+
"capabilities": [
56+
"chat",
57+
"code",
58+
"reasoning",
59+
"deep_thinking",
60+
"multilingual",
61+
"tool_use",
62+
"math"
63+
],
64+
"inputPrice": 3,
65+
"outputPrice": 6,
66+
"defaultTemperature": 1,
67+
"defaultTopP": 1,
68+
"extra": {
69+
"cacheHitPrice": 0.025,
70+
"supportsThinking": true,
71+
"thinkingDefault": true
72+
}
73+
},
1774
{
1875
"modelName": "deepseek-chat",
19-
"displayName": "DeepSeek V3.2",
76+
"displayName": "DeepSeek Chat (V4 Flash alias)",
2077
"serviceType": [
2178
"chat"
2279
],
23-
"description": "高性价比通用对话模型,128K 上下文",
24-
"contextWindow": 128000,
25-
"maxOutputTokens": 8192,
80+
"description": "deepseek-v4-flash 非思考模式的旧别名,将于 2026-07-24 弃用",
81+
"contextWindow": 1000000,
82+
"maxOutputTokens": 384000,
2683
"capabilities": [
2784
"chat",
2885
"code",
2986
"reasoning",
30-
"multilingual"
87+
"multilingual",
88+
"tool_use"
3189
],
32-
"inputPrice": 2,
33-
"outputPrice": 3,
90+
"inputPrice": 1,
91+
"outputPrice": 2,
3492
"defaultTemperature": 1,
3593
"defaultTopP": 1,
3694
"extra": {
37-
"cacheHitPrice": 0.2
95+
"cacheHitPrice": 0.02,
96+
"deprecated": true,
97+
"deprecationDate": "2026-07-24",
98+
"replacedBy": "deepseek-v4-flash"
3899
}
39100
},
40101
{
41102
"modelName": "deepseek-reasoner",
42-
"displayName": "DeepSeek R1",
103+
"displayName": "DeepSeek Reasoner (V4 Flash alias)",
43104
"serviceType": [
44105
"reasoning"
45106
],
46-
"description": "DeepSeek V3.2 思考模式,128K 上下文,思维链默认 32K,最大输出 64K",
47-
"contextWindow": 128000,
48-
"maxOutputTokens": 65536,
107+
"description": "deepseek-v4-flash 思考模式的旧别名,将于 2026-07-24 弃用",
108+
"contextWindow": 1000000,
109+
"maxOutputTokens": 384000,
49110
"capabilities": [
50111
"chat",
51112
"reasoning",
52113
"deep_thinking",
53114
"code",
54-
"math"
115+
"math",
116+
"tool_use"
55117
],
56-
"inputPrice": 4,
57-
"outputPrice": 16,
118+
"inputPrice": 1,
119+
"outputPrice": 2,
58120
"extra": {
59-
"cacheHitPrice": 0.2
121+
"cacheHitPrice": 0.02,
122+
"deprecated": true,
123+
"deprecationDate": "2026-07-24",
124+
"replacedBy": "deepseek-v4-flash"
60125
}
61126
}
62127
]

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"version": "1.0.0",
3-
"presetDataVersion": 52,
4-
"updatedAt": "2026-05-26",
3+
"presetDataVersion": 53,
4+
"updatedAt": "2026-05-27",
55
"description": "DesireCore 官方配置中心"
66
}

0 commit comments

Comments
 (0)