mem0 icon indicating copy to clipboard operation
mem0 copied to clipboard

New memory mistaken for current memory when no existing memory

Open johnwlockwood opened this issue 10 months ago • 0 comments

🐛 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"
        }
    ]
}

johnwlockwood avatar May 30 '25 01:05 johnwlockwood