File size: 121 Bytes
f753cfb
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def do(a):
    import time
    time.sleep(5)
    return a

gr.Interface(do, "text", "text").launch()