abidlabs's picture
abidlabs HF Staff
Create app.py
cad6454
raw
history blame
151 Bytes
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()