Gohil001 commited on
Commit
e87e3d9
·
verified ·
1 Parent(s): f23f8f6

requirements.txt

Browse files

git add app.py requirements.txt && git commit -m "Add Gradio app and requirements" && git push

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