get_memory_history
Retrieve the history of changes for a specific memory by providing its UUID. This tool supports persistent memory continuity in AI systems, enabling tracking of modifications over time.
Instructions
Get change history for a specific memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memory_id | Yes | UUID of the memory |
Input Schema (JSON Schema)
{
"properties": {
"memory_id": {
"description": "UUID of the memory",
"type": "string"
}
},
"required": [
"memory_id"
],
"type": "object"
}