abidlabs's picture
abidlabs HF Staff
Duplicate from abidlabs/test-scroll
f753cfb
raw
history blame contribute delete
121 Bytes
import gradio as gr
def do(a):
import time
time.sleep(5)
return a
gr.Interface(do, "text", "text").launch()