From 1a60116dcedfc5bd0683178d89186bfbf3868ed4 Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Thu, 14 Aug 2025 09:45:49 -0400 Subject: [PATCH] fix zavychromaxl Signed-off-by: Vladimir Mandic --- modules/sd_detect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/sd_detect.py b/modules/sd_detect.py index 0ceee93da..52d32f113 100644 --- a/modules/sd_detect.py +++ b/modules/sd_detect.py @@ -84,7 +84,7 @@ def guess_by_name(fn, current_guess): return 'Stable Diffusion 3' elif 'hidream' in fn.lower(): return 'HiDream' - elif 'chroma' in fn.lower(): + elif 'chroma' in fn.lower() and 'xl' not in fn.lower(): return 'Chroma' elif 'flux' in fn.lower() or 'flex.1' in fn.lower(): size = round(os.path.getsize(fn) / 1024 / 1024) if os.path.isfile(fn) else 0