Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
itron2000
/
2nd-space
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
2nd-space
/
app.py
itron2000
Create app.py
f300e85
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()