delete_faction
Remove a faction from the MemoryMesh knowledge graph by specifying its name to maintain accurate and updated graph data.
Instructions
Delete an existing faction from the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
delete_faction | Yes | Delete parameters for faction |
Input Schema (JSON Schema)
{
"properties": {
"delete_faction": {
"description": "Delete parameters for faction",
"properties": {
"name": {
"description": "The name of the faction to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}
},
"required": [
"delete_faction"
],
"type": "object"
}