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
In v3-dev, LLM memory is still a singleton that is shared across all chats. If you ask a question "What is 1+1" in foo.chat, you can still ask questions about your previous question in bar.chat.
Proposed Solution
Split LLM memory, i.e. dedicate one instance of LLM memory per chat
LLM memory should call a method on the YChat instance to fetch the most recent messages, instead of maintaining a list in-memory.
Add this method if it does not exist.
The text was updated successfully, but these errors were encountered:
Problem
In
v3-dev
, LLM memory is still a singleton that is shared across all chats. If you ask a question "What is 1+1" infoo.chat
, you can still ask questions about your previous question inbar.chat
.Proposed Solution
YChat
instance to fetch the most recent messages, instead of maintaining a list in-memory.The text was updated successfully, but these errors were encountered: