## Retrieve `agents.evaluation_runs.retrieve(strevaluation_run_uuid) -> EvaluationRunRetrieveResponse` **get** `/v2/gen-ai/evaluation_runs/{evaluation_run_uuid}` To retrive information about an existing evaluation run, send a GET request to `/v2/gen-ai/evaluation_runs/{evaluation_run_uuid}`. ### Parameters - **evaluation\_run\_uuid:** `str` ### Returns - `class EvaluationRunRetrieveResponse` - **evaluation\_run:** `Optional[APIEvaluationRun]` ### Example ```python from do_gradientai import GradientAI client = GradientAI() evaluation_run = client.agents.evaluation_runs.retrieve( "evaluation_run_uuid", ) print(evaluation_run.evaluation_run) ```