audiotest100 / app.py
aliabid94's picture
Update app.py
c9cae8e
Raw
History Blame Contribute Delete
122 Bytes
import gradio as gr
def go(a):
import time
time.sleep(20)
return a
gr.Interface(go, "text", "text").launch()