Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
QINGCHE
/
TSA
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
162e76b
TSA
/
app.py
QINGCHE
777
162e76b
almost 2 years ago
raw
Copy download link
history
blame
206 Bytes
import
gradio
as
gr
import
time
def
to_black
(
text
):
time.sleep(
2
)
output =
"hahah"
return
output
interface = gr.Interface(fn=to_black, inputs=
"text"
, outputs=
"text"
)
interface.queue().launch()