-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Description
I am running the web agent, and it works correctly for a few steps. It performs an action, and then tries to save a memory of what it did. At this point, it fails and gives an error.
The agent's action seems to work, but it cannot save the memory and a new step is not started.
Steps to Reproduce:
Start the agent with a task.
The agent completes an action, like clicking a button.
The agent tries to create "procedural memory" to save its progress.
The process fails with an error.
Expected Behavior:
The agent should successfully save the memory and move on to the next step without an error.
Actual Behavior:
The agent gives an error when trying to save the memory. The logs show that it is "Failed to create procedural memory".
Screenshots of the error:

Relevant Logs:
INFO [agent] π Next goal: Follow the steps to complete the selected survey.
INFO [agent] π οΈ Action 1/1: {"click_element_by_index":{"index":10}}
INFO [controller] π±οΈ Clicked button with index 10: Take Survey
INFO [agent] π§ Step 50
INFO [memory] Creating procedural memory at step 50
INFO [mem0.memory.main] Creating procedural memory
ERROR [memory] Error creating procedural memory:
WARNING [memory] Failed to create procedural memory
Could anyone please tell me how to fix this?