curl --request GET \
--url https://api.example.com/api/evals/runs{
"runs": [
{
"avg_context_recall": 0.5,
"avg_factual_correctness": 0.5,
"avg_faithfulness": 0.5,
"dataset_version": "<string>",
"run_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"total_cases": 1,
"avg_response_relevancy": 0.5,
"commit_sha": "<string>",
"embedding_model": "<string>",
"gate_passed": true,
"llm_model": "<string>",
"reranker_available_pct": 0.5,
"reranker_model": "<string>"
}
],
"total": 123
}List all eval runs (without per-case results).
curl --request GET \
--url https://api.example.com/api/evals/runs{
"runs": [
{
"avg_context_recall": 0.5,
"avg_factual_correctness": 0.5,
"avg_faithfulness": 0.5,
"dataset_version": "<string>",
"run_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"total_cases": 1,
"avg_response_relevancy": 0.5,
"commit_sha": "<string>",
"embedding_model": "<string>",
"gate_passed": true,
"llm_model": "<string>",
"reranker_available_pct": 0.5,
"reranker_model": "<string>"
}
],
"total": 123
}