Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
arianmo
/
12
like
0
Runtime error
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
refs/pr/1
12
/
app.py
arianmo
Create app.py
c747079
verified
over 1 year ago
raw
Copy download link
history
blame
199 Bytes
git clone https://huggingface.co/spaces/arianmo/
12
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()