Return the list of models supported by this handler.
(self)
| 67 | # self.http_client = httpx.AsyncClient(timeout=90.0) # Example |
| 68 | |
| 69 | def get_models(self): |
| 70 | """Return the list of models supported by this handler.""" |
| 71 | return self.models |
| 72 | |
| 73 | async def handle_request(self, request_data: dict) -> dict: |
| 74 | """ |
no outgoing calls
no test coverage detected