remotewith commited on
Commit
86459b3
1 Parent(s): 5825cd7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -128,7 +128,9 @@ app2=gr.Interface(fn=text_to_short_summary,
128
  inputs=gr.Textbox(label="Enter"),
129
  outputs=gr.Textbox(label="Output"))
130
 
131
- demo=gr.TabbedInterface(app1,app2)
 
 
132
  demo.launch()
133
 
134
 
 
128
  inputs=gr.Textbox(label="Enter"),
129
  outputs=gr.Textbox(label="Output"))
130
 
131
+ demo = gr.TabbedInterface([app1, app2], ["Text", "Summary"])
132
+
133
+
134
  demo.launch()
135
 
136