Joash commited on
Commit
47e375c
·
1 Parent(s): 6d7cc48

Fix Gradio launch parameters and improve error handling

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -329,8 +329,8 @@ with gr.Blocks(theme=gr.themes.Soft()) as iface:
329
  # Launch the app
330
  if __name__ == "__main__":
331
  iface.launch(
332
- share=False,
333
  server_name="0.0.0.0",
334
  server_port=7860,
335
- enable_queue=True
 
336
  )
 
329
  # Launch the app
330
  if __name__ == "__main__":
331
  iface.launch(
 
332
  server_name="0.0.0.0",
333
  server_port=7860,
334
+ show_error=True,
335
+ quiet=False
336
  )