File size: 203 Bytes
b71cae0
afd36c7
b71cae0
afd36c7
 
b71cae0
 
8fbc49e
1
2
3
4
5
6
7
8
9
import gradio as gr
import time
def greet(name):
    time.sleep(5)
    return "Hi " + name

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.queue(api_open=False).launch(show_api=False)