recall
Search stored memories using semantic queries to retrieve relevant past context for tasks, project details, or session references.
Instructions
Search long-term memory using semantic similarity and return the most relevant stored memories ranked by a confidence score (weighted combination of similarity, recency, and access frequency).
When to call: before starting a task, when the user references something from a past session, or when you need project-specific context.
Returns a ranked list of memories with their confidence score and type. Returns an empty result if no memories exceed the similarity threshold.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Natural language description of what you are looking for. The search is semantic, not keyword-based — describe the concept, not the exact wording. Example: 'database connection settings' or 'user preferences for code style'. | |
| top_k | No | Maximum number of memories to return, ranked by confidence. Use 3–5 for focused lookups, up to 10 for broad exploration. Defaults to 5. |