Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Dylan-Kaneshiro
/
test
like
0
Sleeping
App
Files
Files
Community
68b3f84
test
/
app.py
Dylan-Kaneshiro
Create app.py
2941a19
11 months ago
raw
Copy download link
history
blame
Safe
136 Bytes
import
gradio
as
gr
def
greet
(
s
):
return
"Hello, "
+ s
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()