toxipredict-api / routes /health.py
Arko006's picture
Upload routes/health.py with huggingface_hub
f6bd6dd verified
Raw
History Blame
179 Bytes
from fastapi import APIRouter
router = APIRouter()
@router.get("/api/health")
async def health():
return {"status": "ok", "service": "ToxiPredict API", "version": "1.0.0"}