delete_entities
Remove specific entities and their associated relationships from the Knowledge Graph Memory Server to maintain accurate and up-to-date data storage.
Instructions
Delete multiple entities and their associated relations from the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityNames | Yes | An array of entity names to delete |
Input Schema (JSON Schema)
{
"properties": {
"entityNames": {
"description": "An array of entity names to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"entityNames"
],
"type": "object"
}