deep_recall
Multi-hop recall. Follows links between memories, bringing in context a single search would miss. Best when memories reference each other (a person → their projects → details). Returns up to ~12.
out = mem.engram("deep_recall", "what should I know about Alice?", user_id="alice")Response
{ "engram": "deep_recall", "hops": 2, "count": 12,
"memories": [ ... ],
"usage": { "input_tokens": 200, "output_tokens": 589 } }Metered by tokens - every call returns
usage (input + output), counted by the same tokenizer as the rest of the API; no hidden per-engram fee. Need several at once? Call them concurrently - each engram is an independent request.