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