File size: 181 Bytes
027ec13
 
 
 
 
 
 
 
 
db8f1b5
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)
demo.launch()