touch_memory
Reinforce memories by updating access time and use count to reset temporal decay and increase resistance to forgetting. Optionally boost memory strength to maintain retention.
Instructions
Reinforce a memory by updating its last accessed time and use count.
This resets the temporal decay and increases the memory's resistance to
being forgotten. Optionally can boost the memory's base strength.
Args:
memory_id: ID of the memory to reinforce.
boost_strength: Whether to boost the base strength.
Returns:
Updated memory statistics including old and new scores.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
boost_strength | No | ||
memory_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"boost_strength": {
"default": false,
"title": "Boost Strength",
"type": "boolean"
},
"memory_id": {
"title": "Memory Id",
"type": "string"
}
},
"required": [
"memory_id"
],
"type": "object"
}