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