Spaces:
Sleeping
Sleeping
updating the Dockerfile
Browse files
main.py
CHANGED
@@ -74,4 +74,8 @@ def predict_endpoint(input_data: InputData):
|
|
74 |
|
75 |
return {
|
76 |
"prediction": float(result)
|
77 |
-
}
|
|
|
|
|
|
|
|
|
|
74 |
|
75 |
return {
|
76 |
"prediction": float(result)
|
77 |
+
}
|
78 |
+
|
79 |
+
@app.get("/")
|
80 |
+
def health_check():
|
81 |
+
return {"healthy": True}
|