import_persona
Enables dynamic AI persona management by importing a persona from a specified file path or JSON string, with optional overwrite capabilities.
Instructions
Import a persona from a file path or JSON string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
overwrite | No | Overwrite if persona already exists (default: false) | |
source | Yes | File path to a .md or .json file, or a JSON string of the persona |
Input Schema (JSON Schema)
{
"properties": {
"overwrite": {
"description": "Overwrite if persona already exists (default: false)",
"type": "boolean"
},
"source": {
"description": "File path to a .md or .json file, or a JSON string of the persona",
"type": "string"
}
},
"required": [
"source"
],
"type": "object"
}