File size: 112 Bytes
91c8a5f
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr
import time

def test(x, y):
    time.sleep(3)
    return x

gr.ChatInterface(test).launch()