Commit ·
21bbba7
1
Parent(s): 6fe947e
Raise default QUESTION_TIMEOUT to 500s for gateway stalls
Browse filesCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- gaia_agent/config.py +1 -1
gaia_agent/config.py
CHANGED
|
@@ -52,7 +52,7 @@ class Settings(BaseSettings):
|
|
| 52 |
# without tools. Bounds worst-case latency on research-heavy questions.
|
| 53 |
max_tool_rounds: int = 3
|
| 54 |
recursion_limit: int = 40
|
| 55 |
-
question_timeout: int =
|
| 56 |
|
| 57 |
|
| 58 |
@lru_cache(maxsize=1)
|
|
|
|
| 52 |
# without tools. Bounds worst-case latency on research-heavy questions.
|
| 53 |
max_tool_rounds: int = 3
|
| 54 |
recursion_limit: int = 40
|
| 55 |
+
question_timeout: int = 500
|
| 56 |
|
| 57 |
|
| 58 |
@lru_cache(maxsize=1)
|