ask_intensive_chat
Continue an active chat session by asking follow-up questions within a multi-step process. Supports predefined options for quick selection and maintains chat history for seamless information gathering.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
predefinedOptions | No | Predefined options for the user to choose from (optional) | |
question | Yes | Question to ask the user | |
sessionId | Yes | ID of the intensive chat session |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"predefinedOptions": {
"description": "Predefined options for the user to choose from (optional)",
"items": {
"type": "string"
},
"type": "array"
},
"question": {
"description": "Question to ask the user",
"type": "string"
},
"sessionId": {
"description": "ID of the intensive chat session",
"type": "string"
}
},
"required": [
"sessionId",
"question"
],
"type": "object"
}