From 3f60b9aba8d0bd764f5bac099153357471ae13ee Mon Sep 17 00:00:00 2001 From: Jeremy Fowers Date: Tue, 26 Aug 2025 14:43:18 -0400 Subject: [PATCH] Increase the game creation timeout to 10 minutes --- lemonade_arcade/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemonade_arcade/main.py b/lemonade_arcade/main.py index a9d34ed..9278542 100644 --- a/lemonade_arcade/main.py +++ b/lemonade_arcade/main.py @@ -1215,7 +1215,7 @@ async def generate(): logger.debug( f"Starting request to {LEMONADE_SERVER_URL}/api/v1/chat/completions" ) - async with httpx.AsyncClient(timeout=120.0) as client: + async with httpx.AsyncClient(timeout=600.0) as client: async with client.stream( "POST", f"{LEMONADE_SERVER_URL}/api/v1/chat/completions",