imperialwool commited on
Commit
5fc7bc2
1 Parent(s): a9310a4

Update gradio_app.py

Browse files
Files changed (1) hide show
  1. gradio_app.py +3 -3
gradio_app.py CHANGED
@@ -77,6 +77,6 @@ demo = gr.Interface(
77
  outputs=["text"],
78
  title=title,
79
  description=desc
80
- )
81
- demo.queue()
82
- demo.launch()
 
77
  outputs=["text"],
78
  title=title,
79
  description=desc
80
+ ).queue()
81
+ if __name__ == "__main__":
82
+ demo.launch()