Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
harxsan
/
demo-app
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a52128c
demo-app
/
app.py
harxsan
Update app.py
a52128c
verified
7 months ago
raw
Copy download link
history
blame
156 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello,
{name}
!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch(share=
True
)