From 5a4d5158bcb74488a0d671454a9e55b6bb1fa133 Mon Sep 17 00:00:00 2001 From: phact Date: Sat, 11 Oct 2025 00:52:56 -0400 Subject: [PATCH] crank langflow timeout --- src/config/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/settings.py b/src/config/settings.py index 10e875ea..b1ffba79 100644 --- a/src/config/settings.py +++ b/src/config/settings.py @@ -332,7 +332,7 @@ class AppClients: # Initialize Langflow HTTP client self.langflow_http_client = httpx.AsyncClient( - base_url=LANGFLOW_URL, timeout=60.0 + base_url=LANGFLOW_URL, timeout=300.0 ) return self