docs: add memory how-tos + update add_messages (#958)

---------

Co-authored-by: vbarda <vadym@langchain.dev>
This commit is contained in:
Harrison Chase
2024-07-09 12:26:31 -04:00
committed by GitHub
co-authored by vbarda
parent cf75003cbe
commit a8644baf50
9 changed files with 1212 additions and 6 deletions
+3 -1
View File
@@ -22,7 +22,9 @@ These how-to guides show how to achieve that controllability.
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)
- [How to manage conversation history](managing-conversation-history.ipynb)
- [How to manage conversation history](memory/manage-conversation-history.ipynb)
- [How to delete messages](memory/delete-messages.ipynb)
- [How to add summary conversation memory](memory/add-summary-conversation-history.ipynb)
- [How to create a custom checkpointer using Postgres](persistence_postgres.ipynb)
## Human in the Loop