Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yuankaihuo
/
test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ad5f139
test
/
app.py
yuankaihuo
Update app.py
ad5f139
over 1 year ago
raw
Copy download link
history
blame
Safe
197 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name
gradio_app = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
,title=
"Demo"
)
if
__name__ ==
"__main__"
:
gradio_app.launch()