forget_memory
Remove a specific memory entry or clear all stored data using a key parameter. Specify 'ALL' to wipe the entire memory store.
Instructions
Remove one or all items from persistent memory.
If the input key is "ALL", the entire memory store is cleared.
Otherwise, only the specified key will be removed if it exists.
Args:
input_data (Dict[str, Any]):
A dictionary containing a single key "key" that specifies
which memory entry to remove, or "ALL" to clear all entries.
Returns: Dict[str, Any]: A result dictionary indicating success, failure, or whether the requested key was not found.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input_data | Yes |