memory_recall
Recall relevant facts for a query using LLM-assisted selection. Returns a concise answer from stored memory.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | facts (default) or sources | |
| path | No | optional; only use memory from this one document or file, e.g. contract-b.pdf; call memory_filters for the available values | |
| limit | No | maximum results to return | |
| query | Yes | natural language query | |
| scope | No | thread (default) searches this session plus memory not tied to a session; agent searches every session for the agent | |
| author | No | optional; only use memory produced by this author, matched case-insensitively; call memory_filters for the available values | |
| task_id | No | optional shared task id; also search facts stored in that task's shared pool | |
| thread_id | No | optional free-form conversation/session label; reuse the same value to scope recall/search to one session, omit to read only memory that is not tied to a session | |
| source_kind | No | optional; only use memory from sources of this kind: SYSTEM, USER, AGENT, TOOL, DOCUMENT or CODE |