recall
Retrieve relevant memories for an agent using hybrid search across vector, FTS5, and keyword indices. Filter by channel and exclude known contents to avoid duplication.
Instructions
Recall relevant memories using multi-strategy search (vector + FTS5 + keyword).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | Agent identifier | |
| query | Yes | Search query (empty returns recent memories) | |
| limit | No | Max memories to return | |
| deep | No | Deep recall — disable time and completion decay for exhaustive search | |
| channel | No | Filter memories by channel (e.g. 'chat', 'discord'). Default: '' (all channels). | |
| exclude_contents | No | Normalized content strings to exclude from results (starts-with match). Used to prevent duplication with conversation context already known to the caller. |