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/9
test
/
app.py
not-lain
Enable Space CI (
#1
)
112314a
verified
7 months ago
raw
Copy download link
history
blame
Safe
195 Bytes
import
gradio
as
gr
from
gradio_space_ci
import
enable_space_ci
enable_space_ci()
def
talk
(
text
):
return
text
demo = gr.Interface(fn=talk, inputs=
"text"
, outputs=
"label"
)
demo.launch()