Spaces:
Running on Zero
Running on Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -20,4 +20,10 @@ demo = gr.Interface(
|
|
| 20 |
description="Record 5 seconds and speak. If no mic icon/button appears or recording fails, check browser permissions."
|
| 21 |
)
|
| 22 |
|
| 23 |
-
demo.launch(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
description="Record 5 seconds and speak. If no mic icon/button appears or recording fails, check browser permissions."
|
| 21 |
)
|
| 22 |
|
| 23 |
+
demo.launch(demo.launch(
|
| 24 |
+
server_name="0.0.0.0",
|
| 25 |
+
server_port=7860,
|
| 26 |
+
share=False,
|
| 27 |
+
debug=False,
|
| 28 |
+
ssr_mode=False # disable experimental SSR if causing proxy issues
|
| 29 |
+
))
|