mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-30 11:00:11 +08:00
15 lines
311 B
Python
15 lines
311 B
Python
|
import gradio as gr
|
||
|
|
||
|
def increase(num):
|
||
|
return num + 1
|
||
|
|
||
|
with gr.Blocks() as demo:
|
||
|
a = gr.Number(label="a")
|
||
|
b = gr.Number(label="b")
|
||
|
btoa = gr.Button("a > b")
|
||
|
atob = gr.Button("b > a")
|
||
|
atob.click(increase, a, b)
|
||
|
btoa.click(increase, b, a)
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
demo.launch()
|