Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Turkeyengineer
/
readme
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
532b6d3
readme
/
app.py
Turkeyengineer
Update app.py
334296c
verified
2 months ago
raw
Copy download link
history
blame
Safe
146 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"你好,
{name}
!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()