From 8f5b72c2fa6f28254c9c3a790abe9dfaa03cfd2c Mon Sep 17 00:00:00 2001 From: mkozlowskiAzimuthe Date: Sun, 22 Jan 2023 23:10:08 +0100 Subject: [PATCH] test endpoint --- single_eval.py | 3 +++ 1 file changed, 3 insertions(+) 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(...)):