Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
angolinn
/
MySpace2
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
MySpace2
/
app.py
angolinn
Update app.py
83be666
verified
2 months ago
raw
Copy download link
history
blame
Safe
204 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()
git app.py
git commit -m
"Add application file"
git push