pdf-trainer-worker / health_api.py
Avinashnalla7's picture
Add health server so HF marks worker healthy
c2aa6bc
raw
history blame
155 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"ok": True}
@app.get("/health")
def health():
return {"ok": True}