Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Brettapps
/
brettapps
like
0
Model card
Files
Files and versions
xet
Community
main
brettapps
/
app.py
Brettapps
Upload app.py with huggingface_hub
f371b7c
verified
8 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
180 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
demo.launch()