search_memories_text
Search stored memories by text content to retrieve relevant information, enabling continuity of thought and context in AI systems using full-text queries.
Instructions
Search memories by text content using full-text search
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results | |
query | Yes | Text query to search for |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 10,
"description": "Maximum number of results",
"type": "integer"
},
"query": {
"description": "Text query to search for",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}