mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-20 22:52:29 +02:00
* docs: Time travel and breakpoints * fix links * fix * edits * Fix link * Remove circular redirects * revert llms.txt --------- Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com>
877 B
877 B
search
| search | ||
|---|---|---|
|
Breakpoints
Breakpoints pause graph execution at defined points and let you step through each stage. They use LangGraph's persistence layer, which saves the graph state after each step.
With breakpoints, you can inspect the graph's state and node inputs at any point. Execution pauses indefinitely until you resume, as the checkpointer preserves the state.
!!! tip
For information on how to use breakpoints, see [Set breakpoints](../how-tos/human_in_the_loop/breakpoints.md) and [Set breakpoints using Server API](../cloud/how-tos/human_in_the_loop_breakpoint.md).