From 916b8131077f939ff52577d2181513971bc1ed92 Mon Sep 17 00:00:00 2001 From: ZhangShenao <15201440436@163.com> Date: Thu, 18 Jul 2024 20:27:36 +0800 Subject: [PATCH] community[patch]: Fix spelling error in ConversationVectorStoreTokenBufferMemory doc-string (#24385) Fix word spelling error in `ConversationVectorStoreTokenBufferMemory` --- .../langchain/memory/vectorstore_token_buffer_memory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/langchain/langchain/memory/vectorstore_token_buffer_memory.py b/libs/langchain/langchain/memory/vectorstore_token_buffer_memory.py index 0995bb3e34a67..d4676a7965e17 100644 --- a/libs/langchain/langchain/memory/vectorstore_token_buffer_memory.py +++ b/libs/langchain/langchain/memory/vectorstore_token_buffer_memory.py @@ -1,7 +1,7 @@ """ Class for a conversation memory buffer with older messages stored in a vectorstore . -This implementats a conversation memory in which the messages are stored in a memory +This implements a conversation memory in which the messages are stored in a memory buffer up to a specified token limit. When the limit is exceeded, older messages are saved to a vectorstore backing database. The vectorstore can be made persistent across sessions.