From 654e238d7ed40e7fa98793c086a9d5fc40be7491 Mon Sep 17 00:00:00 2001 From: sylvain Date: Mon, 9 Mar 2026 16:27:15 +0000 Subject: [PATCH] Increase LLM timeout from 120s to 300s qwen3:8b can take over 120s on complex tasks causing silent failures and queue buildup. Co-Authored-By: Claude Sonnet 4.6 --- agents_core/llm_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents_core/llm_client.py b/agents_core/llm_client.py index 3fe64c2..f8d12ad 100644 --- a/agents_core/llm_client.py +++ b/agents_core/llm_client.py @@ -8,7 +8,7 @@ from typing import Optional logger = logging.getLogger(__name__) -DEFAULT_TIMEOUT = 120 +DEFAULT_TIMEOUT = 300 MAX_HISTORY = 20 # messages conservés dans le contexte