Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SDSC
/
digiwild
like
0
Sleeping
App
Files
Files
Community
main
digiwild
/
test.py
caviri
ci: Testing HF
cd2cc83
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
183 Bytes
# app.py
import
gradio
as
gr
def
greet
(
name
):
return
f"Hello,
{name}
!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
demo.launch()