abidlabs HF Staff commited on
Commit
7ccddf3
·
1 Parent(s): 70406a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,3 +1,6 @@
1
  import gradio as gr
2
 
3
- gr.Tabs()
 
 
 
 
1
  import gradio as gr
2
 
3
+ io1= gr.Interface(lambda x:x, "text", "text")
4
+ io2= gr.Interface(lambda x:x, "image", "image")
5
+
6
+ gr.TabbedInterface([io1, io2]).launch()