audiotest100 / app.py
aliabid94's picture
aliabid94 HF Staff
Update app.py
c9cae8e
raw
history blame
122 Bytes
import gradio as gr
def go(a):
import time
time.sleep(20)
return a
gr.Interface(go, "text", "text").launch()