d60934b
1
2
3
4
5
6
7
8
9
10
11
12
13
from fastapi import APIRouter, status router = APIRouter( prefix="/health", tags=["chat"] ) @router.get("", status_code=status.HTTP_200_OK) async def health_check(): return { "status": "healthy", "message": "Service is running" }