From 8f0bd828d5cc99d692e23de8d9441a74c65e362e Mon Sep 17 00:00:00 2001 From: Henry Li Date: Sun, 18 Jan 2026 13:16:27 +0800 Subject: [PATCH] feat: add recursion_limit --- frontend/src/core/threads/hooks.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/core/threads/hooks.ts b/frontend/src/core/threads/hooks.ts index d472cac..7b08906 100644 --- a/frontend/src/core/threads/hooks.ts +++ b/frontend/src/core/threads/hooks.ts @@ -90,6 +90,9 @@ export function useSubmitThread({ threadId: isNewThread ? threadId! : undefined, streamSubgraphs: true, streamResumable: true, + config: { + recursion_limit: 100, + }, context: { ...threadContext, thread_id: threadId,