Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jacobshea
/
reachy
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
reachy
/
app.py
jacobshea
added my friend
9364416
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
159 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello my friend, "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()