abidlabs's picture
abidlabs HF Staff
Create app.py
91c8a5f verified
raw
history blame
112 Bytes
import gradio as gr
import time
def test(x, y):
time.sleep(3)
return x
gr.ChatInterface(test).launch()