Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get per-file results for a batch run.
Python
import requests url = "https://www.datalab.to/api/v1/eval_batch_runs/{run_id}/results" headers = {"X-API-Key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
{ "batch_run": { "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" }, "file_results": [ { "request_id": 123, "filename": "<string>", "status": "<string>", "eval_score": 123, "eval_results": {}, "created": "2023-11-07T05:31:56Z", "lookup_key": "<string>" } ] }
Successful Response
Show child attributes
Was this page helpful?