Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
osaaso
/
grad1
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
grad1
/
app.py
osaaso
Rename app2.py to app.py
ead3fb6
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
160 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hi "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()
#!share="true")