mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-22 23:52:23 +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>
18 lines
877 B
Markdown
18 lines
877 B
Markdown
---
|
|
search:
|
|
boost: 2
|
|
---
|
|
|
|
# Breakpoints
|
|
|
|
[Breakpoints](../how-tos/human_in_the_loop/breakpoints.md) pause graph execution at defined points and let you step through each stage. They use LangGraph's [**persistence layer**](./persistence.md), 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.
|
|
|
|
<figure markdown="1">
|
|
{: style="max-height:400px"}
|
|
<figcaption>An example graph consisting of 3 sequential steps with a breakpoint before step_3. </figcaption> </figure>
|
|
|
|
!!! 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). |