Get Evaluation Results
Retrieve the complete results of a finished evaluation.
This endpoint returns detailed evaluation metrics and scores for a completed evaluation. Works for both single model evaluations and comparison mode evaluations.
Path Parameters:
evaluation_id: Unique evaluation identifier
Returns:
evaluation_id: The evaluation identifiermodel_id: Primary model that was evaluatedbenchmark_id: Benchmark that was usedstatus: Evaluation status (should beREADY)raw_answers_count: Number of raw answers generated during evaluationcompleted_at: ISO timestamp when evaluation finishedmethod(optional): Evaluation method (evalfor single model,eval-comparefor comparison)metrics(optional): Evaluation metrics and scores (single model only)baseline_model_id(optional): Baseline model ID (comparison mode only)base_model(optional): Base model results (comparison mode only)eval_model(optional): Eval model results (comparison mode only)comparison(optional): Comparison results between models (comparison mode only)
Raises:
404: If evaluation not found or doesn’t belong to the authenticated user400: If evaluation is not yet completed
Example Request:
GET /api/v3/evaluations/eval-def456/results
Headers: {"Authorization": "Bearer <api_key>"}
Example Response (Single Model):
{
"evaluation_id": "eval-def456",
"model_id": "aligned-model-01kmqm4nrn9fw6r",
"benchmark_id": "benchmark-abc123",
"status": "READY",
"method": "eval",
"raw_answers_count": 10,
"completed_at": "2024-01-15T10:45:00Z",
"metrics": {
"accuracy": 0.92,
"relevance": 0.88,
"average_score": 0.90,
"total_questions": 10,
"correct_answers": 9
}
}
Example Response (Comparison Mode):
{
"evaluation_id": "eval-def456",
"model_id": "qwen-v2p5-0p5b-instruct",
"baseline_model_id": "aligned-model-01kmqm4nrn9fw6r",
"benchmark_id": "benchmark-abc123",
"status": "READY",
"method": "eval-compare",
"raw_answers_count": 20,
"completed_at": "2024-01-15T10:45:00Z",
"base_model": {
"model_id": "qwen-v2p5-0p5b-instruct",
"average_score": 0.92,
"total_questions": 10
},
"eval_model": {
"model_id": "aligned-model-123",
"average_score": 0.85,
"total_questions": 10
},
"comparison": {
"winner": "qwen-v2p5-0p5b-instruct",
"score_difference": 0.07,
"statistical_significance": true
}
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Returns detailed evaluation metrics and scores for a completed evaluation. This endpoint provides comprehensive results for a finished evaluation, including all relevant metrics, scores, and comparison data if applicable. Use this to analyze the performance of the evaluated model(s) against the benchmark once the evaluation is complete.
Unique identifier for the evaluation
"eval-def456"
ID of the model that was evaluated
"model-xyz789"
Benchmark ID used
"benchmark-abc123"
Evaluation status
"READY"
Number of raw answers generated; read metric means relative to this size
100
ISO timestamp when evaluation completed
"2024-02-24T10:05:00Z"
Metric names and scores. binary_correctness_mean is the fraction of answers whose key facts match the benchmark's ideal answer (0 to 1). answer_relevance_mean rates how relevant each answer is to its question (0 to 1) and ignores correctness; read the pair together. The metric set evolves with our evaluation research.
Evaluation method: 'eval' or 'eval-compare'
"eval-compare"
ID of baseline model (for comparison)
"model-def456"
Base model results (comparison mode)
"qwen-v2p5-0p5b-instruct"
Eval model results (comparison mode)
Comparison results between models