search_memories
Search stored memories by content or category using natural language queries. Automatically triggered by phrases like 'find in memories' or 'look for' to retrieve relevant information.
Instructions
IMPORTANT: This tool should be automatically called when users say "찾아", "검색", "기억 중에", "search memory", "find in memories", "look for" or similar keywords. Search memories by content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | Category to search in | |
query | Yes | Search query |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category to search in",
"type": "string"
},
"query": {
"description": "Search query",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}