curl --request GET \
--url https://api.example.com/v1/experiments/{experiment_id}/incomplete-runs{
"data": [
{
"dataset_example": {
"id": "<string>",
"node_id": "<string>",
"input": {},
"output": {},
"metadata": {},
"updated_at": "2023-11-07T05:31:56Z"
},
"repetition_numbers": [
123
]
}
],
"next_cursor": "<string>"
}Get runs that need to be completed for this experiment.
Returns all incomplete runs, including both missing runs (not yet attempted) and failed runs (attempted but have errors).
Args: experiment_id: The ID of the experiment cursor: Cursor for pagination limit: Maximum number of results to return
Returns: Paginated list of incomplete runs grouped by dataset example, with repetition numbers that need to be run
curl --request GET \
--url https://api.example.com/v1/experiments/{experiment_id}/incomplete-runs{
"data": [
{
"dataset_example": {
"id": "<string>",
"node_id": "<string>",
"input": {},
"output": {},
"metadata": {},
"updated_at": "2023-11-07T05:31:56Z"
},
"repetition_numbers": [
123
]
}
],
"next_cursor": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://arizeai-433a7140-update-phoenix-arize-phoenix-evals-3-1-0.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Cursor for pagination
Maximum number of examples with incomplete runs to return
Was this page helpful?