(
self,
messages: list[dict[str, Any]],
**kwargs: Any,
)
| 563 | self.config.max_output_tokens = original_max_output_tokens |
| 564 | |
| 565 | def __call__( |
| 566 | self, |
| 567 | messages: list[dict[str, Any]], |
| 568 | **kwargs: Any, |
| 569 | ) -> str: |
| 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)) |
nothing calls this directly
no test coverage detected