mem0
mem0 copied to clipboard
New memory mistaken for current memory when no existing memory
🐛 Describe the bug
I've been using the llm model qwen/qwen3-30b-a3b:free and when there are not existing memories, it interprets the new memories in the update prompt to be current memory so it doesn't add them.
==== content: ====
{"facts": ["Name is Johnny", "Likes pizza"]}
==== content: ====
{
"memory": [
{
"id": "0",
"text": "Name is Johnny",
"event": "NONE"
},
{
"id": "1",
"text": "Likes pizza",
"event": "NONE"
}
]
}