aisah1 commited on
Commit
3bdb9f0
1 Parent(s): e3d92c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio
2
+
3
+ demo = gradio.Inteface(
4
+ inputs=["text"],
5
+ outputs=["text"],
6
+ )
7
+
8
+ demo.launch()