get_related_mementos
Find connected memories by exploring relationships like SOLVES or CAUSES to identify solutions or root causes.
Instructions
Find mementos connected to a specific memory via relationships.
Filter by relationship_types (e.g., ["SOLVES"], ["CAUSES"]) and max_depth (default 1).
EXAMPLES:
get_related_mementos(memory_id="prob-1", relationship_types=["SOLVES"]) - find solutions
get_related_mementos(memory_id="err-1", relationship_types=["CAUSES"], max_depth=2) - find root causes
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| memory_id | Yes | ID of the memory to find relations for | |
| relationship_types | No | Filter by relationship types | |
| max_depth | No | Maximum relationship depth to traverse |