(self)
| 348 | |
| 349 | class TestMultiModal(VLLMTestBase): |
| 350 | async def asyncSetUp(self): |
| 351 | # configure the model |
| 352 | self.config = get_template_config() |
| 353 | self.config.mode = "explore" |
| 354 | self.config.model.model_path = get_api_model_path() |
| 355 | self.config.model.custom_chat_template = CHAT_TEMPLATE |
| 356 | self.config.algorithm.repeat_times = 4 |
| 357 | self.config.explorer.rollout_model.chat_template = CHAT_TEMPLATE |
| 358 | self.config.check_and_update() |
| 359 | |
| 360 | self.engines, self.auxiliary_engines = await create_test_models(self.config) |
| 361 | self.model_wrapper = self.engines[0] |
| 362 | |
| 363 | async def test_generate(self): # noqa: C901 |
| 364 | n = self.config.algorithm.repeat_times |
nothing calls this directly
no test coverage detected