template_template_render
Renders a template string using ${variable} syntax with provided variables. Returns the rendered string, or an error if required variables are missing. Supports optional strict mode for validation.
Instructions
[template] Render a template string with the given variables. Uses ${variable} syntax (Python string.Template). Returns the rendered string or an error if variables are missing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| template | Yes | ||
| variables | Yes | ||
| strict | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |