Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/langgraph-platform/langgraph-basics/3-add-memory.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ LangGraph solves this problem through **persistent checkpointing**. If you provi

We will see later that **checkpointing** is _much_ more powerful than simple chat memory - it lets you save and resume complex state at any time for error recovery, human-in-the-loop workflows, time travel interactions, and more. But first, let's add checkpointing to enable multi-turn conversations.

<Note>
**For LangGraph Platform deployments**: When you deploy your graph to LangGraph Platform, checkpointing and memory are provided automatically - you don't need to configure a checkpointer. This tutorial shows local development setup; when deploying, you can remove the checkpointer configuration.
</Note>

## 1. Create a `MemorySaver` checkpointer

Create a `MemorySaver` checkpointer:
Expand Down