Public endpoint showing model availability and hourly uptime statistics. Returns success rates for each model over the last 24 hours. No authentication required.
()
| 327 | |
| 328 | @compute_router.get("/status", tags=["Status"], summary="Get model availability and uptime statistics") |
| 329 | async def get_status(): |
| 330 | """ |
| 331 | Public endpoint showing model availability and hourly uptime statistics. |
| 332 | Returns success rates for each model over the last 24 hours. |
| 333 | No authentication required. |
| 334 | """ |
| 335 | return get_hourly_status() |
| 336 | |
| 337 | @compute_router.get("/quota", summary="Check remaining API credits for the authenticated user") |
| 338 | async def check_quota_endpoint(current_user: AuthUser): |
nothing calls this directly
no test coverage detected