tonytz teminali commited on
Commit
db27944
1 Parent(s): a78e6a2

Create app.py (#1)

Browse files

- Create app.py (f7a6bd4b5be0df679b93d4874fc815f409489d1c)


Co-authored-by: Yohana Wilbert Msigwa <teminali@users.noreply.huggingface.co>

Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
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()