feat(compute): 新增 summary 服务映射,摘要专用轻量模型可配置化 (#85)

desirecore 主仓库把话题摘要/会话摘要/只读深度摘要三处的 provider/model 钉选逻辑
统一收口,原先硬编码在代码里的 desirecore-cloud + deepseek-v4-flash 组合改为读取
这里的 defaultServiceMap.summary,命中该 providerId 时钉选为该轻量模型,避免摘要
任务沿用主会话的重型模型参数。
This commit is contained in:
2026-08-28 16:33:31 +08:00
committed by GitHub
parent a998e18e6c
commit fadc3375c2
2 changed files with 5 additions and 1 deletions

View File

@@ -74,5 +74,9 @@
"music_gen": { "music_gen": {
"modelName": "music-2.6", "modelName": "music-2.6",
"providerId": "provider-minimax-001" "providerId": "provider-minimax-001"
},
"summary": {
"modelName": "deepseek-v4-flash",
"providerId": "desirecore-cloud"
} }
} }

View File

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