find_related_memories
Identify and retrieve related memories using graph traversal based on a starting memory ID, with customizable depth and relationship strength parameters.
Instructions
Find memories related through graph traversal
Input Schema
Name | Required | Description | Default |
---|---|---|---|
max_depth | No | Maximum depth to traverse | |
memory_id | Yes | UUID of the starting memory | |
min_strength | No | Minimum relationship strength |
Input Schema (JSON Schema)
{
"properties": {
"max_depth": {
"default": 2,
"description": "Maximum depth to traverse",
"type": "integer"
},
"memory_id": {
"description": "UUID of the starting memory",
"type": "string"
},
"min_strength": {
"default": 0.3,
"description": "Minimum relationship strength",
"type": "number"
}
},
"required": [
"memory_id"
],
"type": "object"
}