File size: 134 Bytes
b3fb50b
ca55eaf
7577fc9
ca55eaf
 
b3fb50b
1
2
3
4
5
6
7
import gradio as gr

with gr.Blocks() as demo:
    gr.Radio(choices=["First Choice", "Second Choice", "Third Choice"])

demo.launch()