delete_entities
Remove specified entities and their associated observations or relations by names using the delete entity tool.
Instructions
Delete entities (and cascaded observations/relations) by their names.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityNames | Yes | Names of entities to delete. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"entityNames": {
"description": "Names of entities to delete.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"entityNames"
],
"type": "object"
}