(self, messages: list[dict[str, Any]], **kwargs)
| 570 | return run_async(self._complete_text_async(messages, **kwargs)) |
| 571 | |
| 572 | def query(self, messages: list[dict[str, Any]], **kwargs) -> dict[str, Any]: |
| 573 | return run_async(self._query_async(messages)) |
| 574 | |
| 575 | def serialize(self) -> dict[str, Any]: |
| 576 | config_dump = self.config.model_dump(mode="json") |
nothing calls this directly
no test coverage detected