Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gradio
/
radio_component_main
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6ea06b9
radio_component_main
/
run.py
aliabd
HF staff
Upload folder using huggingface_hub
b3fb50b
verified
8 months ago
raw
Copy download link
history
blame
Safe
134 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
gr.Radio(choices=[
"First Choice"
,
"Second Choice"
,
"Third Choice"
])
demo.launch()