add_player_character
Add a player character to MemoryMesh's knowledge graph by inputting details like name, age, gender, occupation, status, and custom attributes to enhance role-playing scenarios.
Instructions
Add a new Player Character to the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
player_character | Yes |
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"
}