MemoryMesh

add_player_character

Add a new Player Character to the knowledge graph

Input Schema

NameRequiredDescriptionDefault
player_characterYes

Input Schema (JSON Schema)

{ "properties": { "player_character": { "additionalProperties": { "description": "Additional property value", "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" }, "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": [ "name", "age", "gender", "occupation", "status" ], "type": "object" } }, "required": [ "player_character" ], "type": "object" }