From 4c4410a2fa4a50c76ebc17247ba2404f5a3e7c99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 22 Nov 2025 20:04:12 +0100 Subject: [PATCH] fix: update batch pipeline to use SDXL instead of FLUX MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed checkpoint from FLUX.1-schnell to sd_xl_base_1.0.safetensors to match available models. Also updated sampling parameters for SDXL: - Steps: 4 → 20 (SDXL needs more steps) - CFG: 1.0 → 7.0 (standard for SDXL) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../batch-pipeline-production-v1.json | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/models/comfyui/workflows/advanced/batch-pipeline-production-v1.json b/models/comfyui/workflows/advanced/batch-pipeline-production-v1.json index 0ed777e..20a23f1 100644 --- a/models/comfyui/workflows/advanced/batch-pipeline-production-v1.json +++ b/models/comfyui/workflows/advanced/batch-pipeline-production-v1.json @@ -11,8 +11,8 @@ "order": 0, "mode": 0, "properties": {"Node name for S&R": "CheckpointLoaderSimple"}, - "widgets_values": ["diffusers/FLUX.1-schnell"], - "title": "FLUX Schnell Loader", + "widgets_values": ["sd_xl_base_1.0.safetensors"], + "title": "SDXL Base Loader", "outputs": [ {"name": "MODEL", "type": "MODEL", "links": [1], "slot_index": 0}, {"name": "CLIP", "type": "CLIP", "links": [2, 3], "slot_index": 1}, @@ -79,7 +79,7 @@ "order": 4, "mode": 0, "properties": {"Node name for S&R": "KSampler"}, - "widgets_values": [42, "fixed", 4, 1.0, "euler", "normal", 1], + "widgets_values": [42, "fixed", 20, 7.0, "euler", "normal", 1], "title": "Batch Sampler (4 variations)", "inputs": [ {"name": "model", "type": "MODEL", "link": 1}, @@ -157,7 +157,7 @@ "workflow_info": { "name": "Batch Pipeline Production", "version": "1.0.0", - "description": "Batch generation pipeline for multiple variations. Generate 4 images simultaneously with different seeds for rapid iteration using FLUX.1-schnell.", + "description": "Batch generation pipeline for multiple variations. Generate 4 images simultaneously with different seeds for rapid iteration using Stable Diffusion XL.", "category": "advanced", "tags": [ "batch", @@ -168,7 +168,7 @@ "flux" ], "requirements": { - "models": ["FLUX.1-schnell"], + "models": ["stable-diffusion-xl-base-1.0"], "custom_nodes": [], "vram_min": "20GB", "vram_recommended": "24GB" @@ -215,10 +215,10 @@ "widget_index": 2, "type": "integer", "required": false, - "default": 4, - "min": 1, - "max": 10, - "description": "Number of sampling steps (4 recommended for FLUX Schnell)" + "default": 20, + "min": 15, + "max": 50, + "description": "Number of sampling steps (20-30 recommended for SDXL)" } }, "outputs": { @@ -231,7 +231,7 @@ } }, "performance": { - "avg_generation_time": "15-25 seconds for 4 images (4 steps)", + "avg_generation_time": "45-60 seconds for 4 images (20 steps)", "vram_usage": "~20-24GB (depends on batch size)", "gpu_utilization": "95-100%" },