hssling commited on
Commit
f506aeb
·
1 Parent(s): 87d8887

Fix Gradio connection crash loop by enforcing 0.0.0.0 bind host

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -78,4 +78,4 @@ demo = gr.Interface(
78
  )
79
 
80
  if __name__ == "__main__":
81
- demo.launch(share=False)
 
78
  )
79
 
80
  if __name__ == "__main__":
81
+ demo.launch(server_name="0.0.0.0", server_port=7860)