diff --git a/single_eval.py b/single_eval.py index e31c2d8..12eb65d 100644 --- a/single_eval.py +++ b/single_eval.py @@ -29,6 +29,9 @@ os.system("ipconfig") print("Starting server") app = FastAPI() +@app.get("/test") +async def test(): + return {"message": "Test"} @app.post("/process") async def process_image(file: UploadFile= File(...)):