Spaces:
Runtime error
Runtime error
File size: 264 Bytes
e89ec77 09962fd 796c57b e89ec77 796c57b 09962fd 796c57b 09962fd e89ec77 796c57b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import gradio as gr
def ping():
return "pong"
with gr.Blocks(title="Gradio Boot") as demo:
btn = gr.Button("Ping")
out = gr.Markdown("Click Ping")
btn.click(fn=ping, inputs=None, outputs=out)
# 念のため両名をエクスポート
app = demo
|