File size: 121 Bytes
a1aa8a9
 
 
 
 
 
 
 
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()