hysts's picture
hysts HF staff
Update app.py
51ad3d5 verified
raw
history blame contribute delete
294 Bytes
import gradio as gr
import spaces
@spaces.GPU(duration=181)
def inner_fn():
return "test"
def wrapper_fn():
return inner_fn()
wrapper_fn.zerogpu = True
with gr.Blocks() as demo:
btn = gr.Button()
out = gr.Textbox()
btn.click(fn=wrapper_fn, outputs=out)
demo.launch()