feat: implement AI model API proxy service
This commit is contained in:
10
backend/app/routes/health.py
Normal file
10
backend/app/routes/health.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""Health check endpoint."""
|
||||
from fastapi import APIRouter
|
||||
|
||||
router = APIRouter(tags=["health"])
|
||||
|
||||
|
||||
@router.get("/health")
|
||||
async def health_check():
|
||||
"""Health check endpoint."""
|
||||
return {"status": "ok"}
|
||||
Reference in New Issue
Block a user