abidlabs's picture
abidlabs HF Staff
Update app.py
3ec0ce8 verified
raw
history blame
171 Bytes
import gradio as gr
import spaces
@spaces.GPU
def test():
return "Hello"
with gr.Blocks() as demo:
t = gr.Textbox()
demo.launch(test, None, t)
demo.launch()