Spaces:
Sleeping
Sleeping
import gradio as gr | |
import spaces | |
def test(): | |
return "Hello" | |
with gr.Blocks() as demo: | |
t = gr.Textbox() | |
demo.load(test, None, t) | |
demo.launch() |