curl --request GET \
--url https://api.example.com/v2/{entity}/{project}/evaluation_runs \
--header 'Authorization: Basic <encoded-value>'[
{
"evaluation_run_id": "<string>",
"evaluation": "<string>",
"model": "<string>",
"status": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"finished_at": "2023-11-07T05:31:56Z",
"summary": {}
}
]List evaluation runs.
curl --request GET \
--url https://api.example.com/v2/{entity}/{project}/evaluation_runs \
--header 'Authorization: Basic <encoded-value>'[
{
"evaluation_run_id": "<string>",
"evaluation": "<string>",
"model": "<string>",
"status": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"finished_at": "2023-11-07T05:31:56Z",
"summary": {}
}
]Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Filter by evaluation references
Filter by model references
Filter by evaluation run IDs
Maximum number of evaluation runs to return
Number of evaluation runs to skip
Stream of data in JSONL format
The evaluation run ID
Reference to the evaluation (weave:// URI)
Reference to the model (weave:// URI)
Status of the evaluation run
When the evaluation run started
When the evaluation run finished
Summary data for the evaluation run
Was this page helpful?