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
I'm highly skeptical if ConversationBufferMemory is actually needed compared to ConversationBufferWindowMemory. There are two main issues with it:
As usage continues, the list in chat_memory will become ever-increasing. (actually this is common for both at the moment, seems very weired though)
When loading, the entire chat history is loaded, which does not correspond to the characteristics of a context window for a limited-sized prompt.
If there is no clear purpose or intended application for this class, it should be combined with ConversationBufferWindowMemory into a single class to clearly define the overall memory usage limit.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I'm highly skeptical if
ConversationBufferMemory
is actually needed compared toConversationBufferWindowMemory
. There are two main issues with it:If there is no clear purpose or intended application for this class, it should be combined with
ConversationBufferWindowMemory
into a single class to clearly define the overall memory usage limit.Beta Was this translation helpful? Give feedback.
All reactions