cancel_task
Terminate a running task on an A2A agent by specifying its task ID to immediately stop its execution and manage agent operations efficiently.
Instructions
Cancel a running task on an A2A agent.
Args: task_id: ID of the task to cancel
Returns: Cancellation result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
task_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"task_id": {
"title": "Task Id",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}