Paweł Łaba commited on
Commit
8a9ddbd
·
1 Parent(s): 165aa59
Files changed (1) hide show
  1. app.py +3 -3
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 JSONResponse({
74
  "status": "success",
75
  "model_loaded": True, # lub odpowiedni warunek
76
- "model_path": "model/model.keras", # Ścieżka do modelu
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")