From fadc3375c25ac2767f04d61b2232bc58ca4577c1 Mon Sep 17 00:00:00 2001 From: Yige Date: Fri, 28 Aug 2026 16:33:31 +0800 Subject: [PATCH] =?UTF-8?q?feat(compute):=20=E6=96=B0=E5=A2=9E=20summary?= =?UTF-8?q?=20=E6=9C=8D=E5=8A=A1=E6=98=A0=E5=B0=84=EF=BC=8C=E6=91=98?= =?UTF-8?q?=E8=A6=81=E4=B8=93=E7=94=A8=E8=BD=BB=E9=87=8F=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E5=8F=AF=E9=85=8D=E7=BD=AE=E5=8C=96=20(#85)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit desirecore 主仓库把话题摘要/会话摘要/只读深度摘要三处的 provider/model 钉选逻辑 统一收口,原先硬编码在代码里的 desirecore-cloud + deepseek-v4-flash 组合改为读取 这里的 defaultServiceMap.summary,命中该 providerId 时钉选为该轻量模型,避免摘要 任务沿用主会话的重型模型参数。 --- compute/service-map.json | 4 ++++ manifest.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/compute/service-map.json b/compute/service-map.json index ae6d819..e8eab02 100644 --- a/compute/service-map.json +++ b/compute/service-map.json @@ -74,5 +74,9 @@ "music_gen": { "modelName": "music-2.6", "providerId": "provider-minimax-001" + }, + "summary": { + "modelName": "deepseek-v4-flash", + "providerId": "desirecore-cloud" } } diff --git a/manifest.json b/manifest.json index 66b8d23..777ecf2 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "version": "1.0.0", - "presetDataVersion": 100, + "presetDataVersion": 101, "updatedAt": "2026-08-28", "description": "DesireCore 官方配置中心" }