Testbuilder / app.py
PaulHouston's picture
initial commit
6d9b521 verified
raw
history blame contribute delete
169 Bytes
import gradio as gr
with gr.Blocks() as demo:
button = gr.Button()
@gr.on([], inputs=[], outputs=[])
def fn_1():
...
return
demo.launch()