From 45e71b98791f20d505fbd25fdde191e175a57a0f Mon Sep 17 00:00:00 2001 From: xxm Date: Tue, 18 Aug 2026 10:23:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20REASSESS=5FTIMEOUT=20120=E2=86=92300(LLM?= =?UTF-8?q?=E9=87=8D=E8=AF=8490-120s=E4=B8=8D=E5=A4=9F,=E8=80=81=E8=8E=AB:?= =?UTF-8?q?=E8=87=B3=E5=B0=91300)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/profile-scripts/promote_candidates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/profile-scripts/promote_candidates.py b/deploy/profile-scripts/promote_candidates.py index 549c309f..7a2a4e8d 100644 --- a/deploy/profile-scripts/promote_candidates.py +++ b/deploy/profile-scripts/promote_candidates.py @@ -11,7 +11,7 @@ DB_PATH = Path("/home/hmo/MoFin/data/mofin.db") # 2026-08-10 修复参数:控制单次运行时长,防 hermes 600s 超时杀进程 MAX_NEW_PER_RUN = 10 # 每次最多提拔 10 个新候选(评分降序优中选优) -REASSESS_TIMEOUT = 120 # 重评子进程超时(原480s→120s,重评是辅助不阻塞主流程) +REASSESS_TIMEOUT = 300 # 重评子进程超时(2026-08-18 老莫:120太短,LLM重评90-120s不够,至少300) TOTAL_TIME_BUDGET = 500 # 总时长护栏(hermes child_timeout=600,留100s余量) START_TIME = time.time()