curl --request GET \
--url https://api.example.com/v1/experiments/{experiment_id}/incomplete-evaluations{
"data": [
{
"experiment_run": {
"dataset_example_id": "<string>",
"output": "<unknown>",
"repetition_number": 123,
"start_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z",
"id": "<string>",
"experiment_id": "<string>",
"trace_id": "<string>",
"error": "<string>"
},
"dataset_example": {
"id": "<string>",
"node_id": "<string>",
"input": {},
"output": {},
"metadata": {},
"updated_at": "2023-11-07T05:31:56Z"
},
"evaluation_names": [
"<string>"
]
}
],
"next_cursor": "<string>"
}Get experiment runs that have incomplete evaluations.
Returns runs with:
Args: experiment_id: The ID of the experiment evaluation_name: List of evaluation names to check (required, at least one) cursor: Cursor for pagination limit: Maximum number of results to return
Returns: Paginated list of runs with incomplete evaluations
curl --request GET \
--url https://api.example.com/v1/experiments/{experiment_id}/incomplete-evaluations{
"data": [
{
"experiment_run": {
"dataset_example_id": "<string>",
"output": "<unknown>",
"repetition_number": 123,
"start_time": "2023-11-07T05:31:56Z",
"end_time": "2023-11-07T05:31:56Z",
"id": "<string>",
"experiment_id": "<string>",
"trace_id": "<string>",
"error": "<string>"
},
"dataset_example": {
"id": "<string>",
"node_id": "<string>",
"input": {},
"output": {},
"metadata": {},
"updated_at": "2023-11-07T05:31:56Z"
},
"evaluation_names": [
"<string>"
]
}
],
"next_cursor": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://arizeai-433a7140.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Evaluation names to check
Cursor for pagination
Maximum number of runs with incomplete evaluations to return
Was this page helpful?