hysts's picture
hysts HF Staff
Update
027ec13
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()