Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.verial.ai/llms.txt

Use this file to discover all available pages before exploring further.

Manage individual task runs that track the outcome of each task within a benchmark run.

Actions

ActionDescription
listList all task runs for a benchmark run
getGet a task run by ID
completeMark a task run as complete
cancelCancel a task run

Parameters

list

ParameterTypeRequiredDescription
benchmarkRunIdstringyesBenchmark run ID to list task runs for

get

ParameterTypeRequiredDescription
idstringyesTask run ID

complete

ParameterTypeRequiredDescription
idstringyesTask run ID

cancel

ParameterTypeRequiredDescription
idstringyesTask run ID

Examples

List task runs for a benchmark run

{
  "action": "list",
  "benchmarkRunId": "br_xyz789"
}

Get task run details

{
  "action": "get",
  "id": "tr_abc123"
}

Complete a task run

{
  "action": "complete",
  "id": "tr_abc123"
}