mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-06-06 05:30:49 +08:00
- 新增 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>
129 lines
3.2 KiB
JSON
129 lines
3.2 KiB
JSON
{
|
||
"id": "provider-deepseek-001",
|
||
"provider": "deepseek",
|
||
"label": "DeepSeek",
|
||
"baseUrl": "https://api.deepseek.com",
|
||
"apiFormat": "openai-completions",
|
||
"apiKeyRef": "deepseek",
|
||
"apiKeyVerified": false,
|
||
"enabled": false,
|
||
"status": "unconfigured",
|
||
"priceCurrency": "CNY",
|
||
"services": [
|
||
"chat",
|
||
"reasoning"
|
||
],
|
||
"models": [
|
||
{
|
||
"modelName": "deepseek-v4-flash",
|
||
"displayName": "DeepSeek V4 Flash",
|
||
"serviceType": [
|
||
"chat",
|
||
"reasoning"
|
||
],
|
||
"description": "DeepSeek V4 主力模型,1M 上下文,支持思考/非思考双模式,高并发(2500)",
|
||
"contextWindow": 1000000,
|
||
"maxOutputTokens": 384000,
|
||
"capabilities": [
|
||
"chat",
|
||
"code",
|
||
"reasoning",
|
||
"deep_thinking",
|
||
"multilingual",
|
||
"tool_use"
|
||
],
|
||
"inputPrice": 1,
|
||
"outputPrice": 2,
|
||
"defaultTemperature": 1,
|
||
"defaultTopP": 1,
|
||
"extra": {
|
||
"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 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"
|
||
}
|
||
}
|
||
]
|
||
}
|