test-scroll / app.py
abidlabs's picture
abidlabs HF Staff
Create app.py
a1aa8a9
raw
history blame
121 Bytes
import gradio as gr
def do(a):
import time
time.sleep(5)
return a
gr.Interface(do, "text", "text").launch()