From 21de3e14065409e60a3af2e9b53c9f2a8b5f5bd2 Mon Sep 17 00:00:00 2001 From: Mick Date: Thu, 1 Jan 2026 14:34:49 +0800 Subject: [PATCH] [diffusion] webui: tiny fix loading output image (#16251) --- python/sglang/multimodal_gen/apps/webui/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sglang/multimodal_gen/apps/webui/main.py b/python/sglang/multimodal_gen/apps/webui/main.py index cc7a2b6f3..9ca1a5f92 100644 --- a/python/sglang/multimodal_gen/apps/webui/main.py +++ b/python/sglang/multimodal_gen/apps/webui/main.py @@ -170,7 +170,7 @@ def run_sgl_diffusion_webui(server_args: ServerArgs): with gr.Column(): image_out = gr.Image( - label="Generated Image", visible=image_visible_only + label="Generated Image", visible=image_visible_only, format="png" ) video_out = gr.Video( label="Generated Video", visible=video_visible_only