Errors¶
While you may not want to see them, informative errors help you design better workflows. Below are the LangGraph-specific errors and what they mean.
GraphRecursionError
¶
Bases: RecursionError
Raised when the graph has exhausted the maximum number of steps.
This prevents infinite loops. To increase the maximum number of steps,
run your graph with a config specifying a higher recursion_limit
.
Examples:
graph = builder.compile()
graph.invoke(
{"messages": [("user", "Hello, world!")]},
# The config is the second positional argument
{"recursion_limit": 1000},
)