delete_task
Remove an uncompleted task from a specified request in a task management system using a queue-based protocol. Displays updated progress table after deletion.
Instructions
Delete a specific task from a request. Only uncompleted tasks can be deleted.
A progress table will be displayed showing the remaining tasks after deletion.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
requestId | Yes | ||
taskId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"requestId": {
"type": "string"
},
"taskId": {
"type": "string"
}
},
"required": [
"requestId",
"taskId"
],
"type": "object"
}