File size: 416 Bytes
af40894
 
1163202
 
 
af40894
badd9c9
121d761
ba4d81f
badd9c9
af40894
1
2
3
4
5
6
7
8
9
10
11
import gradio as gr

def greet(description,color):
    print(color)
    return description

iface = gr.Interface(fn=greet, 
                     inputs=[gr.Textbox(label='Description'),
                            gr.Dropdown(label='Color',choices=['Beige','Black','Blue','Brown','Green','Grey','Orange','Pink','Purple','Red','White','Yellow'],multiselect=True)], 
                     outputs="text")
iface.launch()