border1px commited on
Commit
bb215f5
·
verified ·
1 Parent(s): dd22f5e

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def greet(name):
5
+
6
+ return "Hello " + name + "!!"
7
+
8
+
9
+
10
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
11
+
12
+ iface.launch()