Spaces:
Sleeping
Sleeping
import gradio as gr | |
import time | |
import spaces | |
def test(x, y): | |
time.sleep(3) | |
return x | |
gr.ChatInterface(test).launch() |
import gradio as gr | |
import time | |
import spaces | |
def test(x, y): | |
time.sleep(3) | |
return x | |
gr.ChatInterface(test).launch() |