From bec0de91df427dcc0065c5389949cf9b47526916 Mon Sep 17 00:00:00 2001 From: xxm Date: Tue, 18 Aug 2026 11:37:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20LLM=E5=88=87=E6=8D=A2mimo-v2.5=E2=80=94?= =?UTF-8?q?=E2=80=94DeepSeek=E6=B6=A8=E4=BB=B7=E5=88=87=E4=BE=BF=E5=AE=9Cm?= =?UTF-8?q?imo(REASSESS=5FMODEL=3Dmimo-v2.5,FALLBACK=3Ddeepseek-v4-flash)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/profile-scripts/llm_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/profile-scripts/llm_client.py b/deploy/profile-scripts/llm_client.py index ca468f87..009eb939 100644 --- a/deploy/profile-scripts/llm_client.py +++ b/deploy/profile-scripts/llm_client.py @@ -24,10 +24,10 @@ import urllib.error # ── 常量:所有重评调用统一使用 ── # 2026-07-21 A/B 实测:flash 与 pro 在新 prompt 下质量差距微弱,flash 快 ~40% -REASSESS_MODEL = "deepseek-v4-flash" +REASSESS_MODEL = "mimo-v2.5" # 2026-08-18 老莫:DeepSeek涨价切mimo(更便宜) # flash 对某些 prompt 会稳定返回空内容(688617 实测三连空),pro 能正常输出。 # 空输出时自动升级到 pro 重试一次。 -FALLBACK_MODEL = "deepseek-v4-pro" +FALLBACK_MODEL = "deepseek-v4-flash" # 2026-08-18 mimo空输出时fallback到flash(保留兜底) # 主通道:OCG 上游直连(与 hermes providers.ocg-key6 同源) # key 运行时从 hermes config 读取(SSOT,不落盘到代码库)