Spaces:
Sleeping
Sleeping
File size: 151 Bytes
cad6454 |
1 2 3 4 5 6 7 8 |
import gradio as gr
import time
def test(x):
time.sleep(5)
return x
gr.Interface(lambda x:x, "textbox", "textbox").queue(max_size=2).launch() |