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:
Johnson-LYS
2026-08-27 17:43:36 +08:00
committed by GitHub
parent c46cf07d2f
commit d0e9bf5085
5 changed files with 275 additions and 8 deletions

View File

@@ -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"
}
}
}
]
}