Jarvis-Light1921 commited on
Commit
4ef9869
1 Parent(s): c0b5cfd

Create app.py

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