blocks-dev-test / app.py
abidlabs's picture
abidlabs HF Staff
Update app.py
1aaa5dd
raw
history blame contribute delete
184 Bytes
import gradio as gr
with gr.Blocks() as demo:
a = gr.Textbox()
b = gr.Textbox()
c = gr.Textbox()
a.change(lambda x:2*x, a, b)
a.change(lambda x:3*x, a, c)
demo.launch()