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()