kb_remove_custom
Delete specific custom knowledge entries by category and key from persistent storage to maintain accurate and current information.
Instructions
Remove custom knowledge
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | ||
key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"type": "string"
},
"key": {
"type": "string"
}
},
"required": [
"category",
"key"
],
"type": "object"
}