diff --git a/main.py b/main.py index 77f795b..98dcf82 100644 --- a/main.py +++ b/main.py @@ -18,6 +18,9 @@ allow_headers=["*"] ) +@app.get('/') +def health_check(): + return {'status': 'UP'} @app.post("/predict/sklearn/") # def sklearn_model(req: PredictionRequest):