You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/versions/migrating_memory/conversation_buffer_memory.ipynb
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -268,7 +268,7 @@
268
268
"Please refer to the following [migration guide](/docs/versions/migrating_chains/conversation_chain/) for more information.\n",
269
269
"\n",
270
270
"\n",
271
-
"## Usasge with a pre-built agent\n",
271
+
"## Usage with a pre-built agent\n",
272
272
"\n",
273
273
"This example shows usage of an Agent Executor with a pre-built agent constructed using the [create_tool_calling_agent](https://python.langchain.com/api_reference/langchain/agents/langchain.agents.tool_calling_agent.base.create_tool_calling_agent.html) function.\n",
Copy file name to clipboardExpand all lines: docs/docs/versions/migrating_memory/index.mdx
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -85,12 +85,12 @@ Memory classes that fall into this category include:
85
85
|`ConversationTokenBufferMemory`|[Link to Migration Guide](conversation_buffer_window_memory)| Keeps 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. |
86
86
|`ConversationSummaryMemory`|[Link to Migration Guide](conversation_summary_memory)| Continually summarizes the conversation history. The summary is updated after each conversation turn. The abstraction returns the summary of the conversation history. |
87
87
|`ConversationSummaryBufferMemory`|[Link to Migration Guide](conversation_summary_memory)| Provides 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. |
88
-
|`VectorStoreRetrieverMemory`| See related [long-term memory agent tutorial](https://langchain-ai.github.io/langgraph/tutorials/memory/long_term_memory_agent/)| Stores the conversation history in a vector store and retrieves the most relevant parts of past conversation based on the input. |
88
+
|`VectorStoreRetrieverMemory`| See related [long-term memory agent tutorial](long_term_memory_agent)| Stores the conversation history in a vector store and retrieves the most relevant parts of past conversation based on the input. |
89
89
90
90
91
91
### 2. Extraction of structured information from the conversation history
92
92
93
-
Please see [long-term memory agent tutorial](https://langchain-ai.github.io/langgraph/tutorials/memory/long_term_memory_agent/) implements an agent that can extract structured information from the conversation history.
93
+
Please see [long-term memory agent tutorial](long_term_memory_agent) implements an agent that can extract structured information from the conversation history.
94
94
95
95
Memory classes that fall into this category include:
96
96
@@ -114,7 +114,7 @@ abstractions are not as widely used as the conversation history management abstr
114
114
115
115
For this reason, there are no migration guides for these abstractions. If you're struggling to migrate an application
116
116
that relies on these abstractions, please:
117
-
1) Please review this [Long-term memory agent tutorial](https://langchain-ai.github.io/langgraph/tutorials/memory/long_term_memory_agent/) which should provide a good starting point for how to extract structured information from the conversation history.
117
+
1) Please review this [Long-term memory agent tutorial](long_term_memory_agent) which should provide a good starting point for how to extract structured information from the conversation history.
118
118
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.
119
119
120
120
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.
0 commit comments