import gradio as gr def do(a): import time time.sleep(5) return a gr.Interface(do, "text", "text").launch()