hsienchen commited on
Commit
e0ebd29
1 Parent(s): 225f539

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -102,8 +102,9 @@ with gr.Blocks(theme='snehilsanyal/scikit-learn') as app2:
102
  [chatbot,text_box,image_box],
103
  chatbot
104
  )
105
-
106
- demo = gr.TabbedInterface([app1, app2], ["APP #1", "APP #2"])
 
107
 
108
  demo.queue()
109
  demo.launch()
 
102
  [chatbot,text_box,image_box],
103
  chatbot
104
  )
105
+ with gr.Blocks(theme='snehilsanyal/scikit-learn') as demo:
106
+ gr.Markdown("# DEMO #")
107
+ gr.TabbedInterface([app1, app2], ["APP #1", "APP #2"])
108
 
109
  demo.queue()
110
  demo.launch()