aliabd's picture
aliabd HF Staff
Upload with huggingface_hub
a8ee93d
raw
history blame
233 Bytes
import gradio as gr
css = "footer {display: none !important;} .gradio-container {min-height: 0px !important;}"
with gr.Blocks(css=css) as demo:
gr.Radio(choices=["First Choice", "Second Choice", "Third Choice"])
demo.launch()