Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vlf2444
/
practice
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cdd5592
practice
/
app.py
vlf2444
'add'
1de6af2
over 1 year ago
raw
Copy download link
history
blame
Safe
200 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"textbox"
, outputs=
"textbox"
)
if
__name__ ==
"__main__"
:
demo.launch(share =
True
)