Get generation timeout configuration
(token: str = Depends(verify_admin_token))
| 1613 | |
| 1614 | @router.get("/api/generation/timeout") |
| 1615 | async def get_generation_timeout(token: str = Depends(verify_admin_token)): |
| 1616 | """Get generation timeout configuration""" |
| 1617 | return await get_generation_config(token) |
| 1618 | |
| 1619 | |
| 1620 | @router.post("/api/generation/timeout") |
nothing calls this directly
no test coverage detected