(self, client: OpenAI)
| 139 | |
| 140 | @parametrize |
| 141 | def test_method_retrieve(self, client: OpenAI) -> None: |
| 142 | eval = client.evals.retrieve( |
| 143 | class="st">"eval_id", |
| 144 | ) |
| 145 | assert_matches_type(EvalRetrieveResponse, eval, path=[class="st">"response"]) |
| 146 | |
| 147 | @parametrize |
| 148 | def test_raw_response_retrieve(self, client: OpenAI) -> None: |
nothing calls this directly
no test coverage detected