paloma99 commited on
Commit
f8b7c3b
1 Parent(s): 59ea581

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -152,8 +152,11 @@ chatbot_gradio_app = gr.ChatInterface(
152
  )
153
 
154
  # Combine both interfaces into a single app
155
- gr.TabbedInterface(
156
  [image_gradio_app, chatbot_gradio_app],
157
  tab_names=["Green Greta Image Classification","Green Greta Chat"],
158
  theme=theme
159
- ).launch()
 
 
 
 
152
  )
153
 
154
  # Combine both interfaces into a single app
155
+ app = gr.TabbedInterface(
156
  [image_gradio_app, chatbot_gradio_app],
157
  tab_names=["Green Greta Image Classification","Green Greta Chat"],
158
  theme=theme
159
+ )
160
+
161
+ app.queue()
162
+ app.launch()