Reset/Modify Recursion Limit During Runtime #3232
JohnBPerkins
started this conversation in
Ideas
Replies: 1 comment
-
Would also be good to simply reset the recursion limit after a HITL / interrupt node, as this means the graph really "completed" and needs next steps (e.g., during multi-turn conversations where a sub-agent/graph may interrupt to ask for input) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When building graphs that include human-in-the-loop (HITL) nodes, the recursion limit often needs to be adjusted dynamically. Currently, the recursion limit is a fixed safeguard against infinite loops and deadlocks, but this can be overly restrictive when human input is involved. Introducing a way to reset or modify the recursion limit after exiting a HITL node would provide greater flexibility without compromising system integrity.
Problem Statement
Proposed Solution
Beta Was this translation helpful? Give feedback.
All reactions