abidlabs's picture
abidlabs HF Staff
Update app.py
91da0ac verified
raw
history blame
138 Bytes
import gradio as gr
import time
import spaces
@spaces.GPU
def test(x, y):
time.sleep(3)
return x
gr.ChatInterface(test).launch()