File size: 122 Bytes
3a11d51
8b681e2
c9cae8e
 
 
 
8b681e2
c9cae8e
1
2
3
4
5
6
7
8
import gradio as gr

def go(a):
    import time
    time.sleep(20)
    return a

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