Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NimaBoscarino
/
tests
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2e6234d
tests
/
app.py
Nima Boscarino
Create new file
2e6234d
almost 3 years ago
raw
Copy download link
history
blame
Safe
179 Bytes
import
gradio
as
gr
def
greet
(
name
):
print
(
"Hello "
+ name +
"!"
)
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()