community[patch]: Fix spelling error in ConversationVectorStoreTokenBufferMemory doc-string (#24385)

Fix word spelling error in `ConversationVectorStoreTokenBufferMemory`
This commit is contained in:
ZhangShenao 2024-07-18 20:27:36 +08:00 committed by GitHub
parent 1c65529fd7
commit 916b813107
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.