aliabd's picture
aliabd HF Staff
Upload with huggingface_hub
d1de500
raw
history blame
134 Bytes
import gradio as gr
with gr.Blocks() as demo:
gr.Radio(choices=["First Choice", "Second Choice", "Third Choice"])
demo.launch()