Spaces:
Sleeping
Sleeping
File size: 349 Bytes
b06092a | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import gradio
with gradio.Blocks() as demo:
dropdown = gradio.Dropdown(
choices=[("hello", "goodbye"), ("abc", "123")],
allow_custom_value=True,
label="Dropdown",
)
text = gradio.Textbox(label="Output")
dropdown.change(lambda x: x, inputs=dropdown, outputs=text)
if __name__ == "__main__":
demo.launch() |