update_player_character
Modify player character attributes such as name, age, status, equipment, or background in the MemoryMesh knowledge graph to maintain accurate and updated game data.
Instructions
Update an existing player_character in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
update_player_character | Yes |
Input Schema (JSON Schema)
{
"properties": {
"update_player_character": {
"additionalProperties": {
"description": "Any additional properties",
"type": "string"
},
"properties": {
"age": {
"description": "Player character's age",
"type": "string"
},
"background": {
"description": "The background story of the player character",
"type": "string"
},
"description": {
"description": "A detailed description of the player character",
"type": "string"
},
"equipment": {
"description": "List of equipment items associated with the player character",
"items": {
"description": "Item in equipment array",
"type": "string"
},
"type": "array"
},
"gender": {
"description": "Player character's gender",
"type": "string"
},
"metadata": {
"description": "An array of metadata contents to replace the existing metadata",
"items": {
"description": "Item in metadata array",
"type": "string"
},
"type": "array"
},
"name": {
"description": "Player character's name",
"type": "string"
},
"occupation": {
"description": "Player character's occupation",
"type": "string"
},
"race": {
"description": "Player character's race",
"type": "string"
},
"status": {
"description": "Player character's current status",
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"required": [
"update_player_character"
],
"type": "object"
}