From aa51212849bdfd251284754c5ff2ec4b81183ac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E6=BD=AE?= Date: Thu, 4 Dec 2025 14:10:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=BB=98=E8=AE=A4MAX=5FLLM?= =?UTF-8?q?=5FCALL=5FPER=5FRUN=E8=B0=83=E7=94=A8=E6=AC=A1=E6=95=B050?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- agent/modified_assistant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent/modified_assistant.py b/agent/modified_assistant.py index 21be174..9ed3ca7 100644 --- a/agent/modified_assistant.py +++ b/agent/modified_assistant.py @@ -158,7 +158,7 @@ class ModifiedAssistant(Assistant): response = [] # 保持原有的最大调用次数限制 - total_num_llm_calls_available = self.MAX_LLM_CALL_PER_RUN if hasattr(self, 'MAX_LLM_CALL_PER_RUN') else 10 + total_num_llm_calls_available = self.MAX_LLM_CALL_PER_RUN if hasattr(self, 'MAX_LLM_CALL_PER_RUN') else 50 num_llm_calls_available = total_num_llm_calls_available while num_llm_calls_available > 0: num_llm_calls_available -= 1