List batch runs for the team, optionally filtered by collection, eval rubric, and/or pipeline.
Python
import requests url = "https://www.datalab.to/api/v1/eval_batch_runs" headers = {"X-API-Key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
{ "batch_runs": [ { "id": 123, "collection_id": 123, "eval_rubric_id": 123, "pipeline_id": "<string>", "pipeline_type": "<string>", "status": "<string>", "started_at": "2023-11-07T05:31:56Z", "completed_at": "2023-11-07T05:31:56Z", "total_files": 123, "completed_files": 123, "avg_score": 123, "created": "2023-11-07T05:31:56Z" } ], "total": 123 }
1 <= x <= 200
x >= 0
Successful Response
Show child attributes
Was this page helpful?