gradio/demo/checkboxgroup_component/run.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
142 B
Python
Raw Normal View History

import gradio as gr
2023-07-08 00:44:16 +08:00
with gr.Blocks() as demo:
gr.CheckboxGroup(choices=["First Choice", "Second Choice", "Third Choice"])
demo.launch()