Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gkteco
/
test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7abf4f0
test
/
app.py
giannicrivello
init
7abf4f0
over 1 year ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
test
(
input
:
str
):
return
"Hello, "
+
input
demo = gr.Interface(fn=test, inputs=
"text"
, outputs=
"text"
)
demo.launch()