apply_prompt
Apply specified variables to a template prompt to generate tailored results. Use this tool by providing the prompt ID and variable values for customizable outputs.
Instructions
Applies variables to a template prompt and returns the result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ID of the prompt to apply | |
variables | Yes | Object containing variable names and their values |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "ID of the prompt to apply",
"type": "string"
},
"variables": {
"description": "Object containing variable names and their values",
"type": "object"
}
},
"required": [
"id",
"variables"
],
"type": "object"
}