check_response_status
Monitor the progress of a response generation task using the task ID. Ensures real-time updates on task status within a two-stage AI processing system.
Instructions
Check the status of a response generation task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | The task ID returned by generate_response |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "The task ID returned by generate_response",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}