search_memory
Search through agent memory to retrieve relevant information using semantic similarity matching. Specify queries to find stored data with configurable relevance thresholds and result limits.
Instructions
Search for relevant information in agent memory
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agentId | No | Filter by specific agent ID (optional) | |
| limit | No | Maximum number of results to return (default: 10) | |
| query | Yes | Search query to find relevant memory entries | |
| threshold | No | Minimum similarity threshold (0-1, default: 0.7) |
Input Schema (JSON Schema)
{
"properties": {
"agentId": {
"description": "Filter by specific agent ID (optional)",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of results to return (default: 10)",
"type": "number"
},
"query": {
"description": "Search query to find relevant memory entries",
"type": "string"
},
"threshold": {
"default": 0.7,
"description": "Minimum similarity threshold (0-1, default: 0.7)",
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}