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...
baf304d
readme
/
app.py
Turkeyengineer
Create app.py
baf304d
verified
2 months ago
raw
Copy download link
history
blame
Safe
145 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
f"你好,
{name}
!"
app = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
app.launch()