Spaces:
Runtime error
Runtime error
with main
Browse files
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 |
-
|
| 173 |
-
demo = gr.Parallel(chat_ui)
|
| 174 |
-
|
|
|
|
|
|
|
|
|
| 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()
|