ask_yes_no
Enables LLMs to seek user clarification or verification by prompting a yes/no question, ensuring accurate responses and intent alignment.
Instructions
Ask a yes/no confirmation question to the user when the AI needs clarification or verification
Input Schema
Name | Required | Description | Default |
---|---|---|---|
question | Yes | The yes/no confirmation question to ask the user |
Input Schema (JSON Schema)
{
"properties": {
"question": {
"description": "The yes/no confirmation question to ask the user",
"type": "string"
}
},
"required": [
"question"
],
"type": "object"
}