This commit is contained in:
Xi Yan 2025-03-05 17:36:37 -08:00
parent 2541dcc162
commit 62a844c614

View file

@ -81,7 +81,7 @@ def test_evaluate_benchmark(llama_stack_client, text_model_id, scoring_fn_id):
)
assert response.job_id == "0"
job_status = llama_stack_client.eval.jobs.status(job_id=response.job_id, benchmark_id=benchmark_id)
assert job_status and job_status.value == "completed"
assert job_status and job_status == "completed"
eval_response = llama_stack_client.eval.jobs.result(job_id=response.job_id, benchmark_id=benchmark_id)
assert eval_response is not None