workers-test / app.py
abidlabs's picture
abidlabs HF Staff
Create app.py
87641f9
raw
history blame contribute delete
121 Bytes
import gradio as gr
import time
def test(x):
time.sleep(5)
return x
gr.Interface(test, "text", "text").launch()