Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
YongHuang
/
sigai
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
sigai
/
g.py
YongHuang
add gradio example
1ae8d9a
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
129 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
gr.Interface(greet,
"text"
,
"text"
).launch(share=
True
)