(_: web.Request)
| 112 | """Start a test server for the module.""" |
| 113 | |
| 114 | async def handler(_: web.Request) -> web.Response: |
| 115 | return web.json_response(mock_response) |
| 116 | |
| 117 | app = web.Application() |
| 118 | app.router.add_route("POST", "/v1/chat/completions", handler) |
nothing calls this directly
no outgoing calls
no test coverage detected