Spaces:
Sleeping
Sleeping
File size: 194 Bytes
027ec13 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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()
|