YmcAI commited on
Commit
04cc6ed
1 Parent(s): 9f8bc9b

Upload app.py

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