Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The evaluation job ID
curl --request GET \
--url https://api.together.xyz/v1/evaluation/{id}/status \
--header 'Authorization: Bearer <token>'
{
"status": "completed",
"results": {
"generation_fail_count": 0,
"judge_fail_count": 0,
"invalid_label_count": 0,
"result_file_id": "file-1234-aefd",
"pass_percentage": 10,
"label_counts": "{\"yes\": 10, \"no\": 0}"
}
}
Get the status and results of a specific evaluation job
curl --request GET \
--url https://api.together.xyz/v1/evaluation/{id}/status \
--header 'Authorization: Bearer <token>'
{
"status": "completed",
"results": {
"generation_fail_count": 0,
"judge_fail_count": 0,
"invalid_label_count": 0,
"result_file_id": "file-1234-aefd",
"pass_percentage": 10,
"label_counts": "{\"yes\": 10, \"no\": 0}"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The evaluation job ID
Was this page helpful?