from fastapi import APIRouter router = APIRouter(tags=["health"]) @router.get("/health") async def health_check(): """ Check if the API is running properly Returns: Dictionary with status """ return {"status": "ok"}