Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
OurBuilding Ambient Agents with LangGraph course is now available on LangChain Academy!
Open on GitHub

How to migrate to LangGraph memory

As of the v0.3 release of LangChain, we recommend that LangChain users take advantage ofLangGraph persistence to incorporatememory into their LangChain application.

  • Users that rely onRunnableWithMessageHistory orBaseChatMessageHistory donot need to make any changes, but are encouraged to consider using LangGraph for more complex use cases.
  • Users that rely on deprecated memory abstractions from LangChain 0.0.x should follow this guide to upgrade to the new LangGraph persistence feature in LangChain 0.3.x.

Why use LangGraph for memory?

The main advantages of persistence in LangGraph are:

  • Built-in support for multiple users and conversations, which is a typical requirement for real-world conversational AI applications.
  • Ability to save and resume complex conversations at any point. This helps with:
    • Error recovery
    • Allowing human intervention in AI workflows
    • Exploring different conversation paths ("time travel")
  • Full compatibility with both traditionallanguage models and modernchat models. Early memory implementations in LangChain weren't designed for newer chat model APIs, causing issues with features like tool-calling. LangGraph memory can persist any custom state.
  • Highly customizable, allowing you to fully control how memory works and use different storage backends.

Evolution of memory in LangChain

The concept of memory has evolved significantly in LangChain since its initial release.

LangChain 0.0.x memory

Broadly speaking, LangChain 0.0.x memory was used to handle three main use cases:

Use CaseExample
Managing conversation historyKeep only the lastn turns of the conversation between the user and the AI.
Extraction of structured informationExtract structured information from the conversation history, such as a list of facts learned about the user.
Composite memory implementationsCombine multiple memory sources, e.g., a list of known facts about the user along with facts learned during a given conversation.

While the LangChain 0.0.x memory abstractions were useful, they were limited in their capabilities and not well suited for real-world conversational AI applications. These memory abstractions lacked built-in support for multi-user, multi-conversation scenarios, which are essential for practical conversational AI systems.

Most of these implementations have been officially deprecated in LangChain 0.3.x in favor of LangGraph persistence.

RunnableWithMessageHistory and BaseChatMessageHistory

note

Please seeHow to use BaseChatMessageHistory with LangGraph, if you would like to useBaseChatMessageHistory (with or withoutRunnableWithMessageHistory) in LangGraph.

As of LangChain v0.1, we started recommending that users rely primarily onBaseChatMessageHistory.BaseChatMessageHistory servesas a simple persistence for storing and retrieving messages in a conversation.

At that time, the only option for orchestrating LangChain chains was viaLCEL. To incorporate memory withLCEL, users had to use theRunnableWithMessageHistory interface. While sufficient for basic chat applications, many users found the API unintuitive and challenging to use.

As of LangChain v0.3, we recommend thatnew code takes advantage of LangGraph for both orchestration and persistence:

  • Orchestration: In LangGraph, users definegraphs that specify the flow of the application. This allows users to keep usingLCEL within individual nodes whenLCEL is needed, while making it easy to define complex orchestration logic that is more readable and maintainable.
  • Persistence: Users can rely on LangGraph'spersistence to store and retrieve data. LangGraph persistence is extremely flexible and can support a much wider range of use cases than theRunnableWithMessageHistory interface.
important

If you have been usingRunnableWithMessageHistory orBaseChatMessageHistory, you do not need to make any changes. We do not plan on deprecating either functionality in the near future. This functionality is sufficient for simple chat applications and any code that usesRunnableWithMessageHistory will continue to work as expected.

Migrations

Prerequisites

These guides assume some familiarity with the following concepts:

1. Managing conversation history

The goal of managing conversation history is to store and retrieve the history in a way that is optimal for a chat model to use.

Often this involves trimming and / or summarizing the conversation history to keep the most relevant parts of the conversation while having the conversation fit inside the context window of the chat model.

Memory classes that fall into this category include:

Memory TypeHow to MigrateDescription
ConversationBufferMemoryLink to Migration GuideA basic memory implementation that simply stores the conversation history.
ConversationStringBufferMemoryLink to Migration GuideA special case ofConversationBufferMemory designed for LLMs and no longer relevant.
ConversationBufferWindowMemoryLink to Migration GuideKeeps the lastn turns of the conversation. Drops the oldest turn when the buffer is full.
ConversationTokenBufferMemoryLink to Migration GuideKeeps only the most recent messages in the conversation under the constraint that the total number of tokens in the conversation does not exceed a certain limit.
ConversationSummaryMemoryLink to Migration GuideContinually summarizes the conversation history. The summary is updated after each conversation turn. The abstraction returns the summary of the conversation history.
ConversationSummaryBufferMemoryLink to Migration GuideProvides a running summary of the conversation together with the most recent messages in the conversation under the constraint that the total number of tokens in the conversation does not exceed a certain limit.
VectorStoreRetrieverMemorySee relatedlong-term memory agent tutorialStores the conversation history in a vector store and retrieves the most relevant parts of past conversation based on the input.

2. Extraction of structured information from the conversation history

Please seelong-term memory agent tutorial implements an agent that can extract structured information from the conversation history.

Memory classes that fall into this category include:

Memory TypeDescription
BaseEntityStoreAn abstract interface that resembles a key-value store. It was used for storing structured information learned during the conversation. The information had to be represented as a dictionary of key-value pairs.
ConversationEntityMemoryCombines the ability to summarize the conversation while extracting structured information from the conversation history.

And specific backend implementations of abstractions:

Memory TypeDescription
InMemoryEntityStoreAn implementation ofBaseEntityStore that stores the information in the literal computer memory (RAM).
RedisEntityStoreA specific implementation ofBaseEntityStore that uses Redis as the backend.
SQLiteEntityStoreA specific implementation ofBaseEntityStore that uses SQLite as the backend.
UpstashRedisEntityStoreA specific implementation ofBaseEntityStore that uses Upstash as the backend.

These abstractions have received limited development since their initial release. This is because they generally require significant customization for a specific application to be effective, makingthem less widely used than the conversation history management abstractions.

For this reason, there are no migration guides for these abstractions. If you're struggling to migrate an applicationthat relies on these abstractions, please:

  1. Please review thisLong-term memory agent tutorial which should provide a good starting point for how to extract structured information from the conversation history.
  2. If you're still struggling, please open an issue on the LangChain GitHub repository, explain your use case, and we'll try to provide more guidance on how to migrate these abstractions.

The general strategy for extracting structured information from the conversation history is to use a chat model with tool calling capabilities to extract structured information from the conversation history.The extracted information can then be saved into an appropriate data structure (e.g., a dictionary), and information from it can be retrieved and added into the prompt as needed.

3. Implementations that provide composite logic on top of one or more memory implementations

Memory classes that fall into this category include:

Memory TypeDescription
CombinedMemoryThis abstraction accepted a list ofBaseMemory and fetched relevant memory information from each of them based on the input.
SimpleMemoryUsed to add read-only hard-coded context. Users can simply write this information into the prompt.
ReadOnlySharedMemoryProvided a read-only view of an existingBaseMemory implementation.

These implementations did not seem to be used widely or provide significant value. Users should be ableto re-implement these without too much difficulty in custom code.

Related Resources

Explore persistence with LangGraph:

Add persistence with simple LCEL (favor langgraph for more complex use cases):

Working with message history:


[8]ページ先頭

©2009-2025 Movatter.jp