docs: update persistence in the how-tos (#833)

This commit is contained in:
Vadym Barda
2024-06-26 13:43:23 -04:00
committed by GitHub
parent 000a5c5b83
commit 72ac58d1c2
2 changed files with 9 additions and 2 deletions
+7 -1
View File
@@ -16,12 +16,18 @@ These how-to guides show how to achieve that controllability.
- [How to create branches for parallel execution](branching.ipynb)
- [How to create map-reduce branches for parallel execution](map-reduce.ipynb)
## Persistence
LangGraph makes it easy to persist state across graph runs. The guide below shows how to add persistence to your graph.
- [How to add persistence ("memory") to your graph](persistence.ipynb)
## Human in the Loop
One of LangGraph's main benefits is that it makes human-in-the-loop workflows easy.
These guides cover common examples of that.
- [How to add persistence ("memory") to your graph](persistence.ipynb)
- [How to add breakpoints](human_in_the_loop/breakpoints.ipynb)
- [How to edit graph state](human_in_the_loop/edit-graph-state.ipynb)
- [How to wait for user input](human_in_the_loop/wait-user-input.ipynb)