recall_memory
Retrieve stored information from memory using specific keywords or categories, aiding users in recalling past data with ease through natural language commands.
Instructions
IMPORTANT: This tool should be automatically called when users say "떠올려", "기억나", "recall", "remember what", "what was", "remind me" or similar keywords. Retrieve information from memory
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Memory category to search in | |
| key | Yes | Memory key to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Memory category to search in",
"type": "string"
},
"key": {
"description": "Memory key to retrieve",
"type": "string"
}
},
"required": [
"key"
],
"type": "object"
}