-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Description
Description The "Chat with memory" feature appears to be failing silently. When instructing the AI to remember a piece of information, the interface shows the memory tool being called, and the tool returns a success message (indicating the memory was added). However, the memory is not actually stored. Subsequent queries or checks of the memory list show that nothing was persisted.
Steps to Reproduce
Navigate to the "Chat with memory" interface.
Enter a prompt that requires storing information (e.g., "Please remember that my project deadline is on Friday").
Observe the tool execution logs/UI:
The AI invokes the memory tool.
The tool returns a confirmation (e.g., "Memory added").
Immediately ask the AI to verify the memory (e.g., "What is my project deadline?" or "Check your stored memories").
Expected Behavior The AI should be able to retrieve the information just added, or the information should appear in the saved memories list.
Actual Behavior The AI states that it has no record of the information, or the memory list returns empty/null, despite the previous tool call claiming success.
EBrowser: Zen (Firefox based)
Additional Context It appears the disconnect is occurring after the tool invocation but before the actual database/vector store commit. The tool output suggests the operation worked, but the persistence layer is not updating.