Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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 |
-
)
|
|
|
|
|
|
|
|
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()
|