Richard1231 Snuf commited on
Commit
ff32956
·
verified ·
1 Parent(s): 74457c5

Create app.py (#2)

Browse files

- Create app.py (28cc84dd82804ad842c2b823c0e6dcc7a1185374)


Co-authored-by: Enmus <Snuf@users.noreply.huggingface.co>

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