Spaces:
Runtime error
Runtime error
import gradio as gr | |
import time | |
def test(x): | |
time.sleep(5) | |
return x | |
gr.Interface(test, "text", "text").launch() | |
import gradio as gr | |
import time | |
def test(x): | |
time.sleep(5) | |
return x | |
gr.Interface(test, "text", "text").launch() | |