abidlabs's picture
abidlabs HF Staff
Create app.py
ce94c38
raw
history blame contribute delete
182 Bytes
import gradio as gr
with gr.Blocks() as demo:
gr.Dropdown(["abc", "def"])
btn = gr.Button("def")
t = gr.Textbox()
btn.click(lambda : "test", None, t)
demo.launch()