m7n commited on
Commit
2282ec1
·
1 Parent(s): c4d5d79

exposing app?

Browse files
Files changed (1) hide show
  1. app.py +7 -5
app.py CHANGED
@@ -73,8 +73,10 @@ with gr.Blocks() as demo:
73
  app = gr.mount_gradio_app(app, demo, path="/", ssr_mode=False)
74
  app.zerogpu = True
75
 
76
- # We do NOT manually run uvicorn here; HF Spaces will serve the FastAPI app automatically.
77
- if __name__ == "__main__":
78
- # This pass ensures that if you run it locally (e.g., python app.py),
79
- # nothing breaks, but on Spaces it's auto-served via the 'app' object.
80
- pass
 
 
 
73
  app = gr.mount_gradio_app(app, demo, path="/", ssr_mode=False)
74
  app.zerogpu = True
75
 
76
+ __all__ = ['app']
77
+
78
+ # # We do NOT manually run uvicorn here; HF Spaces will serve the FastAPI app automatically.
79
+ # if __name__ == "__main__":
80
+ # # This pass ensures that if you run it locally (e.g., python app.py),
81
+ # # nothing breaks, but on Spaces it's auto-served via the 'app' object.
82
+ # pass