Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
angelo9830
/
rostro
like
0
No application file
App
Files
Files
Community
63adffc
rostro
/
app.py
angelo9830
Update app.py
63adffc
verified
17 days ago
raw
Copy download link
history
blame
Safe
175 Bytes
import
gradio
as
gr
def
hello
(
name
):
return
f"Hello,
{name}
!"
demo = gr.Interface(fn=hello, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
demo.launch()