fix(compute): 修正 summary 映射的模型名,账号实际同步的是带日期后缀版本 (#86)

真机验证发现 desirecore-cloud 账号 /api/v1/me/models 同步下来的模型目录里
只有 deepseek-v4-flash-0731(isDefault=true),没有裸的 deepseek-v4-flash——
PR #85 用的裸模型名精确匹配不上,导致摘要模型钉选静默失效(原样透传,无报错)。

改为 deepseek-v4-flash-0731(当前账号实际的 flash 档默认模型,contextWindow
与 pro 档一致但 inputRatio/outputRatio 明显更低)。这类日期后缀模型名可能
随云端版本迭代变化,后续如再次不匹配,只需改这个文件重新同步,无需改代码。
This commit is contained in:
2026-08-28 18:07:10 +08:00
committed by GitHub
parent fadc3375c2
commit 3dbb9f2d83
2 changed files with 2 additions and 2 deletions

View File

@@ -76,7 +76,7 @@
"providerId": "provider-minimax-001" "providerId": "provider-minimax-001"
}, },
"summary": { "summary": {
"modelName": "deepseek-v4-flash", "modelName": "deepseek-v4-flash-0731",
"providerId": "desirecore-cloud" "providerId": "desirecore-cloud"
} }
} }

View File

@@ -1,6 +1,6 @@
{ {
"version": "1.0.0", "version": "1.0.0",
"presetDataVersion": 101, "presetDataVersion": 102,
"updatedAt": "2026-08-28", "updatedAt": "2026-08-28",
"description": "DesireCore 官方配置中心" "description": "DesireCore 官方配置中心"
} }