File size: 138 Bytes
91c8a5f
 
91da0ac
91c8a5f
91da0ac
91c8a5f
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio as gr
import time
import spaces

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

gr.ChatInterface(test).launch()