Spaces:
Running on Zero
Running on Zero
pr/3
#3
by sriharsha-cr - opened
app.py
CHANGED
|
@@ -18,9 +18,11 @@ def build_app() -> gr.Blocks:
|
|
| 18 |
return app
|
| 19 |
|
| 20 |
|
|
|
|
|
|
|
| 21 |
if __name__ == "__main__":
|
| 22 |
-
|
| 23 |
-
app.launch(
|
| 24 |
share=False,
|
| 25 |
server_port=config.SERVER_PORT,
|
|
|
|
| 26 |
)
|
|
|
|
| 18 |
return app
|
| 19 |
|
| 20 |
|
| 21 |
+
demo = build_app()
|
| 22 |
+
|
| 23 |
if __name__ == "__main__":
|
| 24 |
+
demo.launch(
|
|
|
|
| 25 |
share=False,
|
| 26 |
server_port=config.SERVER_PORT,
|
| 27 |
+
ssr_mode=False,
|
| 28 |
)
|