gradio_iframe / app.py
LennardZuendorf's picture
Upload folder using huggingface_hub
fd2b294 verified
raw history blame
No virus
277 Bytes
import gradio as gr
from gradio_iframe import iFrame
example = iFrame().example_inputs()
with gr.Blocks() as demo:
with gr.Row():
iFrame(label="Blank"), # blank component
iFrame(value=example, label="Populated"), # populated component
demo.launch()