Skip to main content
GET
/
evaluation
/
{id}
/
status
# Docs for v2 can be found by changing the above selector ^
from together import Together
import os

client = Together(
api_key=os.environ.get("TOGETHER_API_KEY"),
)

response = client.evaluation.status('eval_id')

print(response.status)
print(response.results)
{
  "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}"
  }
}

Authorizations

Authorization
string
header
default:default
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

Evaluation job status and results retrieved successfully

status
enum<string>

The status of the evaluation job

Available options:
completed,
error,
user_error,
running,
queued,
pending
results
object

The results of the evaluation job

  • Option 1
  • Option 2
  • Option 3