delete_observations
Remove specific observations from entities in the knowledge graph. Use this tool to maintain data accuracy by deleting outdated or incorrect entity-associated observations.
Instructions
Delete specific observations from entities in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deletions | Yes | Array of entity observations to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deletions": {
"description": "Array of entity observations to delete",
"items": {
"additionalProperties": false,
"properties": {
"entityName": {
"description": "Name of the entity to remove observations from",
"minLength": 1,
"type": "string"
},
"observations": {
"description": "Observations to remove from the entity",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"entityName",
"observations"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"deletions"
],
"type": "object"
}