remove_memory
Remove specific memory entries from the agent's memory system by providing the memory ID, enabling precise memory management and data cleanup.
Instructions
Remove a memory entry from the agent memory system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memoryId | Yes | ID of the memory entry to remove |
Input Schema (JSON Schema)
{
"properties": {
"memoryId": {
"description": "ID of the memory entry to remove",
"type": "string"
}
},
"required": [
"memoryId"
],
"type": "object"
}