jack 1 tydzień temu
rodzic
commit
3d36e37a6d
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1 1
      .env.example
  2. 1 1
      config/llm.py

+ 1 - 1
.env.example

@@ -41,7 +41,7 @@ OPENAI_API_KEY=
 LLM_MAX_STEP=2
 
 # tool
-TOOL_WORKER_NUM=10
+TOOL_WORKER_NUM=200
 TOOL_WORKER_EXECUTION_TIMEOUT=180
 
 # web search tool

+ 1 - 1
config/llm.py

@@ -19,7 +19,7 @@ class ToolSettings(BaseSettings):
     tool settings
     """
 
-    TOOL_WORKER_NUM: int = 10
+    TOOL_WORKER_NUM: int = 200
     TOOL_WORKER_EXECUTION_TIMEOUT: int = 180
 
     BING_SEARCH_URL: str = "https://api.bing.microsoft.com/v7.0/search"