jblocher commited on
Commit
1209690
·
1 Parent(s): 033853b

with main

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -169,6 +169,8 @@ download_ui = gr.Interface(
169
  # launches them in parallel, allowing users to switch between the chatbot
170
  # and download interfaces.
171
 
172
- #demo = gr.Parallel(chat_ui, download_ui)
173
- demo = gr.Parallel(chat_ui)
174
- demo.launch()
 
 
 
169
  # launches them in parallel, allowing users to switch between the chatbot
170
  # and download interfaces.
171
 
172
+ demo = gr.Parallel(chat_ui, download_ui)
173
+ #demo = gr.Parallel(chat_ui)
174
+
175
+ if __name__ == "__main__":
176
+ demo.launch()