Spaces:
Sleeping
Sleeping
Fix Gradio connection crash loop by enforcing 0.0.0.0 bind host
Browse files
app.py
CHANGED
|
@@ -90,4 +90,4 @@ demo = gr.Interface(
|
|
| 90 |
)
|
| 91 |
|
| 92 |
if __name__ == "__main__":
|
| 93 |
-
demo.launch(
|
|
|
|
| 90 |
)
|
| 91 |
|
| 92 |
if __name__ == "__main__":
|
| 93 |
+
demo.launch(server_name="0.0.0.0", server_port=7860)
|