File size: 180 Bytes
c6729fb
7ad7638
 
 
c6729fb
7ad7638
 
3b797c6
7ad7638
1
2
3
4
5
6
7
8
9
10
import time
import gradio as gr

def greet(name):
    time.sleep(5)
    return "Hello " + name + "!!"

iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()