From f86598f15c4adebbab2ced53eaa95fce8b87964f Mon Sep 17 00:00:00 2001 From: hmo Date: Wed, 29 Jul 2026 04:27:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20--force=E8=A1=A5=E6=BC=8F=E4=B8=BB?= =?UTF-8?q?=E5=BE=AA=E7=8E=AF=E9=A2=84=E8=BF=87=E6=BB=A4=E8=B7=B3=E8=BF=87?= =?UTF-8?q?=E7=82=B9(=E5=85=B13=E5=A4=84:=E5=86=B7=E5=8D=B4/process?= =?UTF-8?q?=E5=86=85/=E4=B8=BB=E5=BE=AA=E7=8E=AF)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/profile-scripts/batch_reassess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/profile-scripts/batch_reassess.py b/deploy/profile-scripts/batch_reassess.py index a7135dba..421ed687 100644 --- a/deploy/profile-scripts/batch_reassess.py +++ b/deploy/profile-scripts/batch_reassess.py @@ -696,7 +696,7 @@ def main(): skip = 0 failed_codes = [] for i, code in enumerate(codes): - if has_llm_analysis(code) and not analysis_stale(code, force_today): + if not FORCE_REASSESS and has_llm_analysis(code) and not analysis_stale(code, force_today): print(f" [{i+1}/{len(codes)}] \u23ed {code} 已有12维分析且未过期") skip += 1 continue