diogocarapito commited on
Commit
de8b649
·
1 Parent(s): 5124493

first test

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