-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Description
The AI assistant is unable to add a new memory using the addMemory tool when asked to combine two existing pieces of user information. The tool call fails repeatedly with a generic error, preventing the AI from learning from the conversation and improving its knowledge about the user.
Steps to Reproduce
- The AI has two separate, distinct memories about a user (e.g., Memory A: "User is a software engineer," and Memory B: "User's favorite anime is Attack on Titan").
- The user asks the AI to connect or combine these two memories into a single, consolidated memory.
- The AI correctly formulates a new memory string, such as: Amama Fatima is a software engineer whose favorite anime is Attack on Titan.
- The AI calls the
addMemorytool with this new string. - The tool returns an error response: {"success": false, "error": "Failed to add memory"}.
- The AI, attempting to recover, tries the
addMemorycall again, perhaps with slightly different wording. - The second tool call also fails with the same error.
Expected Behavior
The addMemory tool should successfully process the request and create the new, consolidated memory. The AI should then be able to confirm to the user that the information has been saved correctly.
Actual Behavior
The addMemory tool call fails consistently. The API returns {"success": false, "error": "Failed to add memory"}. The AI cannot fulfill the user's request and has to report a technical issue, leading to a frustrating user experience.
Additional Information
I dont see any errors in the networks tab when i request the AI to add a memory. So this is probably some internal issue.