hsienchen commited on
Commit
29fc1b8
1 Parent(s): a34f4ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -94,5 +94,9 @@ with gr.Blocks() as app1:
94
  """)
95
 
96
 
97
- app1.queue()
98
- app1.launch()
 
 
 
 
 
94
  """)
95
 
96
 
97
+ with gr.Blocks() as demo:
98
+ gr.Markdown("## Workflow Bot ##")
99
+ gr.TabbedInterface([app1, app1], ["To-Do's", "SOS"])
100
+
101
+ demo.queue()
102
+ demo.launch()