imtharun commited on
Commit
30de3f4
·
1 Parent(s): 84d2625

initial commit

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import gradio as gradio
2
+
3
+ def greet(name):
4
+ return f'Hello ${name}'
5
+
6
+ gradio.Interface(fn=greet, inputs="Tharun", outputs="text").launch()