From 230175f33d00923b1aacd0eb3bee02e3f3a9af72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 23 Nov 2025 10:27:47 +0100 Subject: [PATCH] fix: combine FLUX CLIP entries into single repo entry MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both CLIP-L and T5-XXL come from the same repo, so they should be in one entry with multiple files, not two separate entries. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- comfyui_models.yaml | 21 +++++---------------- 1 file changed, 5 insertions(+), 16 deletions(-) diff --git a/comfyui_models.yaml b/comfyui_models.yaml index f2b645d..a8315dc 100644 --- a/comfyui_models.yaml +++ b/comfyui_models.yaml @@ -263,28 +263,17 @@ model_categories: dest: "siglip-so400m-patch14-384.safetensors" - repo_id: stabilityai/stable-diffusion-3.5-large - description: CLIP-L - For FLUX text encoding - size_gb: 1 - essential: true - category: support - type: clip - format: fp32 - vram_gb: 1 - notes: CLIP-L text encoder required for FLUX models - files: - - source: "text_encoders/clip_l.safetensors" - dest: "clip_l.safetensors" - - - repo_id: stabilityai/stable-diffusion-3.5-large - description: T5-XXL FP16 - For FLUX text encoding - size_gb: 9 + description: CLIP-L and T5-XXL - For FLUX text encoding + size_gb: 10 essential: true category: support type: clip format: fp16 vram_gb: 4 - notes: T5-XXL text encoder required for FLUX models + notes: CLIP text encoders required for FLUX models files: + - source: "text_encoders/clip_l.safetensors" + dest: "clip_l.safetensors" - source: "text_encoders/t5xxl_fp16.safetensors" dest: "t5xxl_fp16.safetensors"