a2a_get_task
Retrieve the current state of a specific task by providing its task ID and the agent ID that handled it, enabling task tracking and management.
Instructions
Get the current state of a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
agentId | Yes | ID of the agent that handled the task | |
taskId | Yes | ID of the task to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"agentId": {
"description": "ID of the agent that handled the task",
"type": "string"
},
"taskId": {
"description": "ID of the task to retrieve",
"type": "string"
}
},
"required": [
"taskId",
"agentId"
],
"type": "object"
}