elicit_custom
Create tailored confirmation dialogs with custom schemas for scenarios where standard tools are insufficient, ensuring precise user input collection.
Instructions
Create a custom confirmation dialog with specific schema when standard tools don't fit
Input Schema
Name | Required | Description | Default |
---|---|---|---|
message | Yes | Message to display to the user | |
schema | Yes | JSON schema defining the structure of information to collect |
Input Schema (JSON Schema)
{
"properties": {
"message": {
"description": "Message to display to the user",
"type": "string"
},
"schema": {
"description": "JSON schema defining the structure of information to collect",
"type": "object"
}
},
"required": [
"message",
"schema"
],
"type": "object"
}