From 864e6f123ac3aad575c8bfd8d74b00848663950d Mon Sep 17 00:00:00 2001 From: hmo Date: Fri, 14 Aug 2026 07:31:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20self=5Frepair=20call=5Fllm=E5=8A=A0concu?= =?UTF-8?q?rrent=3DTrue=E2=80=94=E2=80=94=E8=B5=B0OCG=20router=20round-rob?= =?UTF-8?q?in=E5=88=86=E6=91=8Akey,=E9=81=BF=E5=85=8D=E7=9B=B4=E8=BF=9E401?= =?UTF-8?q?=E7=9A=84key1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/profile-scripts/self_repair.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/profile-scripts/self_repair.py b/deploy/profile-scripts/self_repair.py index 5afa90ad..93a80fb6 100644 --- a/deploy/profile-scripts/self_repair.py +++ b/deploy/profile-scripts/self_repair.py @@ -179,7 +179,7 @@ def llm_diagnose(failure): # session 指令冻结+上下文无限累积,2026-07-21 废弃) sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) from llm_client import call_llm - res = call_llm(prompt, max_tokens=300, timeout=90, retries=0, backoff=0) + res = call_llm(prompt, max_tokens=300, timeout=90, retries=0, backoff=0, concurrent=True) if not res["ok"]: raise RuntimeError(res["error"][:120]) text = res["content"]