Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aupfe08
/
Hello
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
Hello
/
app.py
aupfe08
Update app.py
bb35900
over 1 year ago
raw
Copy download link
history
blame
189 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=gr.Textbox(lines=
2
, placeholder=
"Name Here..."
), outputs=
"text"
)
demoe.launch()