From 72ac58d1c264c91f65320cecba37c0fa897facd5 Mon Sep 17 00:00:00 2001 From: Vadym Barda Date: Wed, 26 Jun 2024 13:43:23 -0400 Subject: [PATCH] docs: update persistence in the how-tos (#833) --- docs/docs/how-tos/index.md | 8 +++++++- docs/mkdocs.yml | 3 ++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/docs/how-tos/index.md b/docs/docs/how-tos/index.md index 3381ac3f9..20da1fd8f 100644 --- a/docs/docs/how-tos/index.md +++ b/docs/docs/how-tos/index.md @@ -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) diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 354471e67..1eb890a68 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -130,8 +130,9 @@ nav: - Create subgraphs: how-tos/subgraph.ipynb - Create branches for parallel execution: how-tos/branching.ipynb - Create map-reduce branches for parallel execution: how-tos/map-reduce.ipynb - - Human-in-the-loop: + - Persistence: - Add persistence ("memory"): how-tos/persistence.ipynb + - Human-in-the-loop: - Add breakpoints: how-tos/human_in_the_loop/breakpoints.ipynb - Wait for user input: how-tos/human_in_the_loop/wait-user-input.ipynb - View and update past graph state: how-tos/human_in_the_loop/time-travel.ipynb