update_memory
Modify or append memory data in the Hi-AI system by specifying a key and new value. Automatically triggered by commands like 'update' or 'edit memory'.
Instructions
IMPORTANT: This tool should be automatically called when users say "수정해", "업데이트", "바꿔", "update memory", "change", "modify", "edit memory" or similar keywords. Update existing memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
append | No | Append to existing value | |
key | Yes | Memory key to update | |
value | Yes | New value |
Input Schema (JSON Schema)
{
"properties": {
"append": {
"description": "Append to existing value",
"type": "boolean"
},
"key": {
"description": "Memory key to update",
"type": "string"
},
"value": {
"description": "New value",
"type": "string"
}
},
"required": [
"key",
"value"
],
"type": "object"
}