recall_thread
Retrieve a conversation thread around a specific turn_id to add context when a memory search result lacks sufficient surrounding information.
Instructions
§4.3.1 — Retrieve the memories sharing a turn_id plus N entries before and after in chronological order. Use this when a search_memory hit lacks enough context: pass the hit's turn_id here to surface the surrounding conversation thread. Returns {status:'not_found'} if turn_id is unknown.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| turn_id | Yes | The turn_id from a search_memory result. | |
| before | No | Number of earlier entries to include (default 2). | |
| after | No | Number of later entries to include (default 2). |