Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
tonne
/
villm
like
0
Runtime error
App
Files
Files
Community
f1bd30a
villm
/
main.py
tonne
change to gradio
e4b3e0a
about 1 year ago
raw
Copy download link
history
blame
Safe
153 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()