## Create `agents.evaluation_test_cases.create(EvaluationTestCaseCreateParams**kwargs) -> EvaluationTestCaseCreateResponse` **post** `/v2/gen-ai/evaluation_test_cases` To create an evaluation test-case send a POST request to `/v2/gen-ai/evaluation_test_cases`. ### Parameters - **dataset\_uuid:** `str` Dataset against which the test‑case is executed. - **description:** `str` Description of the test case. - **metrics:** `List[str]` Full metric list to use for evaluation test case. - **name:** `str` Name of the test case. - **star\_metric:** `APIStarMetricParam` - **workspace\_uuid:** `str` The workspace uuid. ### Returns - `class EvaluationTestCaseCreateResponse` - **test\_case\_uuid:** `Optional[str]` Test‑case UUID. ### Example ```python from do_gradientai import GradientAI client = GradientAI() evaluation_test_case = client.agents.evaluation_test_cases.create() print(evaluation_test_case.test_case_uuid) ```