gradio/demo/basic_text.py

16 lines
413 B
Python
Raw Normal View History

2020-06-10 08:00:30 +08:00
import gradio as gr
2020-06-16 02:57:49 +08:00
def upper(choice, sentence):
return sentence[::-1], choice.upper()
2020-06-11 14:04:14 +08:00
gr.Interface(upper,
2020-06-12 02:25:38 +08:00
[
2020-06-16 02:57:49 +08:00
gr.inputs.Dropdown(label="Pick something", choices=["big thing", "small", "other"]),
"text"
2020-06-12 02:25:38 +08:00
],
[
"textbox",
2020-06-16 02:57:49 +08:00
gr.outputs.Textbox(label="box 2", lines=3, placeholder="hello")
]).launch()