recall_relevant
Recall the most semantically relevant stored fragments using BM25 ranking with a feedback loop that boosts previously successful outputs. Returns a ranked pointer list with source, score, and snippet.
Instructions
Semantic recall of the most relevant stored fragments.
Uses BM25 relevance ranking (recall_auto) with a feedback loop (fragments that previously led to successful outputs are boosted).
Returns a slim ranked pointer list by default — source, score, and a
locating snippet — because full fragment bodies overflow the tool
result cap (a top_k=8 recall is ~90KB). Pass full=True only
when you need the complete text of every hit.
Args: query: The search query top_k: Number of results to return full: Return complete fragment bodies instead of the slim view
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| full | No | ||
| query | Yes | ||
| top_k | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |