Spaces:
Sleeping
Sleeping
| import gradio as gr | |
| def fn(): | |
| return gr.Gallery(value=["cats.jpg"]) | |
| with gr.Blocks() as demo: | |
| gallery = gr.Gallery() | |
| demo.load(fn=fn, outputs=gallery, queue=False) | |
| demo.launch() | |