from fastapi import APIRouter, status | |
router = APIRouter( | |
prefix="/health", | |
tags=["chat"] | |
) | |
async def health_check(): | |
return { | |
"status": "healthy", | |
"message": "Service is running" | |
} |
from fastapi import APIRouter, status | |
router = APIRouter( | |
prefix="/health", | |
tags=["chat"] | |
) | |
async def health_check(): | |
return { | |
"status": "healthy", | |
"message": "Service is running" | |
} |