Spaces:
Sleeping
Sleeping
Commit ·
3ed91ff
1
Parent(s): cd3b5ba
updated health return
Browse files
main.py
CHANGED
|
@@ -12,7 +12,7 @@ app = FastAPI()
|
|
| 12 |
|
| 13 |
@app.get("/healthz")
|
| 14 |
def health():
|
| 15 |
-
return {"
|
| 16 |
|
| 17 |
class ModelName(str, Enum):
|
| 18 |
alexnet = "alexnet"
|
|
|
|
| 12 |
|
| 13 |
@app.get("/healthz")
|
| 14 |
def health():
|
| 15 |
+
return {"repsonse_from_fastapi": "very very ok"}
|
| 16 |
|
| 17 |
class ModelName(str, Enum):
|
| 18 |
alexnet = "alexnet"
|