mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-09-05 18:34:35 +08:00
feat(compute): add DeepSeek V4 variants and Qwen3.8 Flash (#82)
- add DeepSeek V4 Flash Vision Exp provider and model specifications - add DeepSeek V4 Flash 0731 and Qwen3.8 Flash model specifications - add regression coverage and bump preset data version
This commit is contained in:
@@ -162,13 +162,10 @@
|
||||
{
|
||||
"id": "deepseek-v4-flash",
|
||||
"displayName": "DeepSeek V4 Flash",
|
||||
"family": "deepseek-v4",
|
||||
"family": "deepseek-v4-flash",
|
||||
"match": {
|
||||
"exact": [
|
||||
"deepseek-v4-flash"
|
||||
],
|
||||
"patterns": [
|
||||
"deepseek-v4-flash*"
|
||||
]
|
||||
},
|
||||
"spec": {
|
||||
@@ -211,6 +208,111 @@
|
||||
"defaultMode": "high"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "deepseek-v4-flash-0731",
|
||||
"displayName": "DeepSeek V4 Flash 0731",
|
||||
"family": "deepseek-v4-flash-0731",
|
||||
"match": {
|
||||
"exact": [
|
||||
"deepseek-v4-flash-0731"
|
||||
]
|
||||
},
|
||||
"spec": {
|
||||
"contextWindow": 1000000,
|
||||
"maxOutputTokens": 384000,
|
||||
"capabilities": [
|
||||
"chat",
|
||||
"code",
|
||||
"reasoning",
|
||||
"deep_thinking",
|
||||
"multilingual",
|
||||
"tool_use"
|
||||
],
|
||||
"serviceType": [
|
||||
"chat",
|
||||
"reasoning"
|
||||
],
|
||||
"defaultTemperature": 1,
|
||||
"supportsReasoning": true,
|
||||
"extra": {
|
||||
"supportsThinking": true,
|
||||
"thinkingDefault": true,
|
||||
"reasoningEffort": [
|
||||
"high",
|
||||
"max"
|
||||
]
|
||||
},
|
||||
"description": "DeepSeek V4 Flash 0731 固定版本,100 万上下文"
|
||||
},
|
||||
"routing": {
|
||||
"tier": "lightweight",
|
||||
"routingPriority": 35,
|
||||
"eligibleForAgent": true,
|
||||
"defaultReference": false,
|
||||
"reasoning": {
|
||||
"supportedModes": [
|
||||
"auto",
|
||||
"high",
|
||||
"max"
|
||||
],
|
||||
"defaultMode": "high"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "deepseek-v4-flash-vision-exp",
|
||||
"displayName": "DeepSeek V4 Flash Vision Exp",
|
||||
"family": "deepseek-v4-flash-vision-exp",
|
||||
"match": {
|
||||
"exact": [
|
||||
"deepseek-v4-flash-vision-exp"
|
||||
]
|
||||
},
|
||||
"spec": {
|
||||
"contextWindow": 1000000,
|
||||
"maxOutputTokens": 384000,
|
||||
"capabilities": [
|
||||
"chat",
|
||||
"code",
|
||||
"reasoning",
|
||||
"deep_thinking",
|
||||
"vision",
|
||||
"multilingual",
|
||||
"tool_use"
|
||||
],
|
||||
"serviceType": [
|
||||
"chat",
|
||||
"reasoning",
|
||||
"vision"
|
||||
],
|
||||
"defaultTemperature": 1,
|
||||
"supportsReasoning": true,
|
||||
"releasedAt": "2026-08-21",
|
||||
"extra": {
|
||||
"supportsThinking": true,
|
||||
"thinkingDefault": true,
|
||||
"reasoningEffort": [
|
||||
"high",
|
||||
"max"
|
||||
]
|
||||
},
|
||||
"description": "DeepSeek V4 Flash 实验性视觉版本,支持文本与图像输入,文本能力与 V4 Flash 一致"
|
||||
},
|
||||
"routing": {
|
||||
"tier": "lightweight",
|
||||
"routingPriority": 35,
|
||||
"eligibleForAgent": true,
|
||||
"defaultReference": false,
|
||||
"reasoning": {
|
||||
"supportedModes": [
|
||||
"auto",
|
||||
"high",
|
||||
"max"
|
||||
],
|
||||
"defaultMode": "high"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -50,6 +50,66 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "qwen3.8-flash",
|
||||
"displayName": "Qwen3.8 Flash",
|
||||
"family": "qwen3.8-flash",
|
||||
"match": {
|
||||
"exact": [
|
||||
"qwen3.8-flash"
|
||||
]
|
||||
},
|
||||
"spec": {
|
||||
"contextWindow": 1000000,
|
||||
"maxOutputTokens": 131072,
|
||||
"capabilities": [
|
||||
"chat",
|
||||
"reasoning",
|
||||
"deep_thinking",
|
||||
"code",
|
||||
"multilingual",
|
||||
"tool_use",
|
||||
"long_context",
|
||||
"agent",
|
||||
"vision",
|
||||
"video_understanding",
|
||||
"fast"
|
||||
],
|
||||
"serviceType": [
|
||||
"chat",
|
||||
"reasoning",
|
||||
"vision"
|
||||
],
|
||||
"defaultTemperature": 0.6,
|
||||
"defaultTopP": 0.95,
|
||||
"supportsReasoning": true,
|
||||
"extra": {
|
||||
"thinkingDefault": true,
|
||||
"thinkingMaxTokens": 262144
|
||||
},
|
||||
"releasedAt": "2026-08-26",
|
||||
"description": "通义千问 Qwen3.8 Flash,高性价比多模态推理模型,支持 100 万上下文及文本、图像、视频输入"
|
||||
},
|
||||
"routing": {
|
||||
"tier": "lightweight",
|
||||
"routingPriority": 40,
|
||||
"eligibleForAgent": true,
|
||||
"defaultReference": false,
|
||||
"reasoning": {
|
||||
"supportedModes": [
|
||||
"auto",
|
||||
"off",
|
||||
"minimal",
|
||||
"low",
|
||||
"medium",
|
||||
"high",
|
||||
"xhigh",
|
||||
"max"
|
||||
],
|
||||
"defaultMode": "xhigh"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "qwen3.8-max-preview",
|
||||
"displayName": "Qwen3.8 Max Preview",
|
||||
|
||||
Reference in New Issue
Block a user