update_entities
Modify multiple entities in a knowledge graph by updating their names, types, or observations to enhance AI memory and user interaction accuracy.
Instructions
Update multiple existing entities in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entities | Yes |
Input Schema (JSON Schema)
{
"properties": {
"entities": {
"items": {
"properties": {
"entityType": {
"description": "The updated type of the entity",
"type": "string"
},
"name": {
"description": "The name of the entity to update",
"type": "string"
},
"observations": {
"description": "The updated array of observation contents",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"entities"
],
"type": "object"
}