import gradio as gr | |
with gr.Blocks() as demo: | |
gr.CheckboxGroup(choices=["First Choice", "Second Choice", "Third Choice"]) | |
demo.launch() | |
import gradio as gr | |
with gr.Blocks() as demo: | |
gr.CheckboxGroup(choices=["First Choice", "Second Choice", "Third Choice"]) | |
demo.launch() | |