Tools
Task Runs
Manage task runs within a benchmark run.
Manage individual task runs that track the outcome of each task within a benchmark run.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage task runs within a benchmark run.
| Action | Description |
|---|---|
list | List all task runs for a benchmark run |
get | Get a task run by ID |
complete | Mark a task run as complete |
cancel | Cancel a task run |
list| Parameter | Type | Required | Description |
|---|---|---|---|
benchmarkRunId | string | yes | Benchmark run ID to list task runs for |
get| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Task run ID |
complete| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Task run ID |
cancel| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Task run ID |
{
"action": "list",
"benchmarkRunId": "br_xyz789"
}
{
"action": "get",
"id": "tr_abc123"
}
{
"action": "complete",
"id": "tr_abc123"
}