Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
FCameCode
/
prova
like
0
No application file
App
Files
Files
Community
FCameCode
commited on
Dec 24, 2022
Commit
5d85fcb
•
1 Parent(s):
a18d0ba
add application
Browse files
Files changed (1)
hide
show
test.py
+9
-0
test.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!!"
6
+
7
+
8
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+
iface.launch()