b5b3cdf 162e76b b5b3cdf 162e76b b5b3cdf 162e76b
1
2
3
4
5
6
7
8
9
10
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()