diff --git a/api/onnx_web/server/context.py b/api/onnx_web/server/context.py index 42cc35a5..d7ab7a6c 100644 --- a/api/onnx_web/server/context.py +++ b/api/onnx_web/server/context.py @@ -100,7 +100,7 @@ class ServerContext: memory_limit = int(memory_limit) return cls( - bundle_path=env.get("ONNX_WEB_BUNDLE_PATH", path.join("..", "gui", "out")), + bundle_path=env.get("ONNX_WEB_BUNDLE_PATH", path.join(".", "gui")), model_path=env.get("ONNX_WEB_MODEL_PATH", path.join("..", "models")), output_path=env.get("ONNX_WEB_OUTPUT_PATH", path.join("..", "outputs")), params_path=env.get("ONNX_WEB_PARAMS_PATH", "."),