abidlabs's picture
abidlabs HF staff
Update app.py
91da0ac verified
raw
history blame contribute delete
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()