## Create `agents.evaluation_runs.create(EvaluationRunCreateParams**kwargs) -> EvaluationRunCreateResponse` **post** `/v2/gen-ai/evaluation_runs` To run an evaluation test case, send a POST request to `/v2/gen-ai/evaluation_runs`. ### Parameters - **agent\_uuids:** `List[str]` Agent UUIDs to run the test case against. - **run\_name:** `str` The name of the run. - **test\_case\_uuid:** `str` Test-case UUID to run ### Returns - `class EvaluationRunCreateResponse` - **evaluation\_run\_uuids:** `Optional[List[str]]` ### Example ```python from do_gradientai import GradientAI client = GradientAI() evaluation_run = client.agents.evaluation_runs.create() print(evaluation_run.evaluation_run_uuids) ```