From 3dbb9f2d83b1fc04301330f3ea614f60284202cd Mon Sep 17 00:00:00 2001 From: Yige Date: Fri, 28 Aug 2026 18:07:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(compute):=20=E4=BF=AE=E6=AD=A3=20summary=20?= =?UTF-8?q?=E6=98=A0=E5=B0=84=E7=9A=84=E6=A8=A1=E5=9E=8B=E5=90=8D=EF=BC=8C?= =?UTF-8?q?=E8=B4=A6=E5=8F=B7=E5=AE=9E=E9=99=85=E5=90=8C=E6=AD=A5=E7=9A=84?= =?UTF-8?q?=E6=98=AF=E5=B8=A6=E6=97=A5=E6=9C=9F=E5=90=8E=E7=BC=80=E7=89=88?= =?UTF-8?q?=E6=9C=AC=20(#86)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 真机验证发现 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 明显更低)。这类日期后缀模型名可能 随云端版本迭代变化,后续如再次不匹配,只需改这个文件重新同步,无需改代码。 --- compute/service-map.json | 2 +- manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compute/service-map.json b/compute/service-map.json index e8eab02..df6facc 100644 --- a/compute/service-map.json +++ b/compute/service-map.json @@ -76,7 +76,7 @@ "providerId": "provider-minimax-001" }, "summary": { - "modelName": "deepseek-v4-flash", + "modelName": "deepseek-v4-flash-0731", "providerId": "desirecore-cloud" } } diff --git a/manifest.json b/manifest.json index 777ecf2..45800a3 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "version": "1.0.0", - "presetDataVersion": 101, + "presetDataVersion": 102, "updatedAt": "2026-08-28", "description": "DesireCore 官方配置中心" }