TSA / app.py
QINGCHE's picture
777
162e76b
raw
history blame
206 Bytes
import gradio as gr
import time
def to_black(text):
time.sleep(2)
output = "hahah"
return output
interface = gr.Interface(fn=to_black, inputs="text", outputs="text")
interface.queue().launch()