remotewith commited on
Commit
0d8f2c3
·
1 Parent(s): 2eeff5f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -124,7 +124,12 @@ app1=gr.Interface(
124
  ]
125
  )
126
 
127
- app1.launch()
 
 
 
 
 
128
 
129
 
130
 
 
124
  ]
125
  )
126
 
127
+ 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
 
135