File size: 430 Bytes
e3e6b7f 5c16a9a e3e6b7f 5c16a9a e3e6b7f 5c16a9a |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
def dropdownbx(first, second):
return f"selected_option_1st, {first}! selected_option_2nd {second}."
name_dropdown = gr.inputs.Dropdown(choices=["A1", "A2", "A3"], label="first")
city_dropdown = gr.inputs.Dropdown(choices=["aa1", "aa11", "aa2" , "aa22"], label="second")
output_text = gr.outputs.Textbox()
gr.Interface(fn=dropdownbx, inputs=[name_dropdown, city_dropdown], outputs=output_text).launch() |