render_template
Render dynamic HTML or text content by processing a specified template with given variables, enabling flexible customization for dynamic AI persona management within DollhouseMCP.
Instructions
Render a template element with provided variables
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The template name to render | |
variables | Yes | Variables to use in the template |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The template name to render",
"type": "string"
},
"variables": {
"additionalProperties": true,
"description": "Variables to use in the template",
"type": "object"
}
},
"required": [
"name",
"variables"
],
"type": "object"
}