Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
not-lain
/
test
like
1
Sleeping
App
Files
Files
Community
14
refs/pr/14
test
/
app.py
not-lain
Update app.py
efb9a68
verified
6 months ago
raw
Copy download link
history
blame
Safe
212 Bytes
import
gradio
as
gr
from
gradio_space_ci
import
enable_space_ci
enable_space_ci()
def
talk
(
text
):
return
"the user said "
+ text
demo = gr.Interface(fn=talk, inputs=
"text"
, outputs=
"label"
)
demo.launch()