delete_npc
Remove an existing NPC from the MemoryMesh knowledge graph by specifying its name. Streamlines entity management and maintains graph accuracy.
Instructions
Delete an existing npc from the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
delete_npc | Yes | Delete parameters for npc |
Input Schema (JSON Schema)
{
"properties": {
"delete_npc": {
"description": "Delete parameters for npc",
"properties": {
"name": {
"description": "The name of the npc to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"required": [
"delete_npc"
],
"type": "object"
}