Spaces:
Runtime error
Runtime error
File size: 373 Bytes
4c7ebd5 c7bf71a b23b938 c7bf71a |
1 2 3 4 5 6 7 8 9 10 |
import gradio as gr
import time
def my_function(x, progress=gr.Progress()):
progress(0, desc="Starting...")
time.sleep(1)
for i in progress.tqdm(range(100)):
time.sleep(0.1)
return progress, x
# gr.Interface(my_function, gr.Textbox(), gr.Textbox()).queue().launch()
gr.Interface(my_function, gr.Textbox(), [gr.Textbox(), gr.HTML()]).queue().launch() |