Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
neuronetties
/
Wine
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8f3ece0
Wine
/
app.py
GoofyGoof
Update app.py
8f3ece0
4 months ago
raw
Copy download link
history
blame
Safe
156 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"???????????"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()