-
-
Notifications
You must be signed in to change notification settings - Fork 19.9k
Mem0 question #4411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Isn't that what the mem0 node does by default? As soon as you hardcode the So, you can have Flowise Session IDs 11111, 22222, 33333 all pointing to the same Here is an example. I provide my name and say I love cars in 2 different Flowise sessions ID still, in another new session ID, the AI puts both pieces of knowledge together from Mem0. |
Thank you @toi500 - Yes that is accurate, if you leave everything default. However, When i try to pass a user id and run id via overrrideconfig, it doesn't behave this way. It forgets the information i provided in the past two sessions. Here is what gets inserted into mem0 with defaults. ![]() Here it is with overrideconfig values of user id of "vj" and unique run ids for each session ![]() I think the sessionid is being inserted as the user id and user id as agent id when performing an overrride config ![]() |
Could you share what your Flowise Mem0 node looks like? Additional Para included. |
Hey @vijaykammili, sorry for the late reply! The issue is happening because we used In our setup, This is handled properly in |
I was not aware of this limitation. Thank you @vijaykammili for pointing it out and @whysosaket for the explanation and the PR. cc: @HenryHengZJ |
@whysosaket. Thank you so much. That makes sense. |
Hey @whysosaket , @toi500 , @HenryHengZJ - Thanks for adding the mem0 node, it's great! I'm looking to implement user memory search across sessions to recall past interactions in new sessions. Any advice on how to achieve this?
For Ex:
User: X
Session: 11111 (Runid)
User Input: My name is X
User: X
Session: 22222 (Runid)
User Input: I like cars
User: X
Session: 33333 (Runid)
User Input: Tell me about myself
Retrieved Memories: Name is X, Likes cars
Agent: Your name is X and you like cars.
I've tried a few different ways but couldn't seem to get the mem0 node to behave this way? Any suggestions?
The text was updated successfully, but these errors were encountered: