From 1e6e2290a24e0899b6dc3e4f49138b0bd2f1a1f0 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 9 Mar 2026 14:35:33 +0700 Subject: [PATCH] =?UTF-8?q?llm.py:=20Timeout=20auf=2060s=20erh=C3=B6ht=20f?= =?UTF-8?q?=C3=BCr=20Tool-Calling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- homelab-ai-bot/llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homelab-ai-bot/llm.py b/homelab-ai-bot/llm.py index 2579c4e7..48c37dcb 100644 --- a/homelab-ai-bot/llm.py +++ b/homelab-ai-bot/llm.py @@ -144,7 +144,7 @@ def _call_openrouter(messages: list, api_key: str, use_tools: bool = True) -> di "https://openrouter.ai/api/v1/chat/completions", headers={"Authorization": f"Bearer {api_key}"}, json=payload, - timeout=30, + timeout=60, ) r.raise_for_status() return r.json()