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