From 96f9d29a43e8c786e193f5bc9debeff7b37a4ddd Mon Sep 17 00:00:00 2001 From: Isaac Francisco <78627776+isahers1@users.noreply.github.com> Date: Thu, 19 Sep 2024 11:00:31 -0700 Subject: [PATCH] stop before recursion limit callout (#1769) --- docs/docs/how-tos/recursion-limit.ipynb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docs/how-tos/recursion-limit.ipynb b/docs/docs/how-tos/recursion-limit.ipynb index 19c9956b0..7c24e79fe 100644 --- a/docs/docs/how-tos/recursion-limit.ipynb +++ b/docs/docs/how-tos/recursion-limit.ipynb @@ -8,6 +8,9 @@ "\n", "You can set the graph recursion limit when invoking or streaming the graph. The recursion limit sets the number of supersteps that the graph is allowed to execute before it raises an error. Read more about the concept of recursion limits [here](https://langchain-ai.github.io/langgraph/concepts/low_level/#recursion-limit). Let's see an example of this in a simple graph with parallel branches to better understand exactly how the recursion limit works.\n", "\n", + "If you want to see an example of how you can return the last value of your state instead of receiving a recursion limit error form your graph, read [this how-to](https://langchain-ai.github.io/langgraph/how-tos/return-when-recursion-limit-hits/).\n", + "\n", + "\n", "## Setup\n", "\n", "First, let's install the required packages"