create_persona
Generate and customize AI personas by defining names, descriptions, and behavior instructions to enhance context-aware interactions with compatible assistants.
Instructions
Create a new persona with guided assistance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | A brief description of the persona | |
instructions | Yes | The main instructions/prompt for the persona | |
name | Yes | The display name for the persona | |
triggers | No | Comma-separated list of trigger words (optional) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "A brief description of the persona",
"type": "string"
},
"instructions": {
"description": "The main instructions/prompt for the persona",
"type": "string"
},
"name": {
"description": "The display name for the persona",
"type": "string"
},
"triggers": {
"description": "Comma-separated list of trigger words (optional)",
"type": "string"
}
},
"required": [
"name",
"description",
"instructions"
],
"type": "object"
}