crash-test / app.py
mrfakename's picture
Create app.py
ca9227d verified
raw
history blame
152 Bytes
import gradio as gr
def crash_app():
exit()
with gr.Blocks() as demo:
btn = gr.Button("Crash")
btn.click(crash_app)
demo.queue().launch()