Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ruidanwang
/
minina
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
3ff141b
minina
/
app.py
ruidanwang
测试
517a073
10 months ago
raw
Copy download link
history
blame
Safe
153 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello wdq -- "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()