()
| 37 | |
| 38 | |
| 39 | async def health_check() -> ResponseWrapper: |
| 40 | async with aiohttp.ClientSession() as session: |
| 41 | response = await session.get( |
| 42 | f"{CONFIG.TASKINGAI_INFERENCE_URL}/v1/health_check", |
| 43 | ) |
| 44 | return ResponseWrapper(response.status, await response.json()) |
nothing calls this directly
no test coverage detected