Paweł Łaba
commited on
Commit
·
8a9ddbd
1
Parent(s):
165aa59
zmiany
Browse files
app.py
CHANGED
@@ -70,11 +70,11 @@ async def read_root():
|
|
70 |
@app.get("/status")
|
71 |
async def get_status():
|
72 |
print("Endpoint /status został wywołany.")
|
73 |
-
return
|
74 |
"status": "success",
|
75 |
"model_loaded": True, # lub odpowiedni warunek
|
76 |
-
"model_path": "model/model.keras"
|
77 |
-
}
|
78 |
|
79 |
|
80 |
@app.post("/move")
|
|
|
70 |
@app.get("/status")
|
71 |
async def get_status():
|
72 |
print("Endpoint /status został wywołany.")
|
73 |
+
return {
|
74 |
"status": "success",
|
75 |
"model_loaded": True, # lub odpowiedni warunek
|
76 |
+
"model_path": "model/model.keras"
|
77 |
+
}
|
78 |
|
79 |
|
80 |
@app.post("/move")
|