From bba35f1b2c339fd654b057268c930c9fd8aef9e1 Mon Sep 17 00:00:00 2001 From: ZhenYi <434836402@qq.com> Date: Wed, 29 Apr 2026 09:03:33 +0800 Subject: [PATCH] fix(room): increase streaming timeout from 60s to 120s Give more buffer for heartbeat chunks to arrive during long tool execution, reducing false "Stream timed out" errors. --- src/contexts/room-context.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contexts/room-context.tsx b/src/contexts/room-context.tsx index 2a3b95b..848c4af 100644 --- a/src/contexts/room-context.tsx +++ b/src/contexts/room-context.tsx @@ -498,7 +498,7 @@ export function RoomProvider({ ), ); streamingTimersRef.current.delete(msgId); - }, 60000); + }, 120000); streamingTimersRef.current.set(msgId, timer); }, []);