Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
workers-test-async
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
72b236f
workers-test-async
/
app.py
abidlabs
HF staff
Create app.py
72b236f
almost 3 years ago
raw
Copy download link
history
blame
Safe
196 Bytes
import
gradio
as
gr
import
asyncio
async
def
test
(
x
):
await
asyncio.sleep(
5
)
return
x
with
gr.Blocks()
as
demo:
i = gr.Textbox()
o = gr.Textbox()
i.change(test, i, o)
demo.launch()