hysts's picture
hysts HF Staff
Update app.py
db8f1b5 verified
raw
history blame contribute delete
181 Bytes
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()