import gradio as gr import time def sleep(x): time.sleep(6) return x + ", hello" gr.Interface(sleep, "textbox", "textbox").queue().launch()