From 61f14363855b37b0a05b761c3e9f80e7606d5501 Mon Sep 17 00:00:00 2001 From: Talmaj Marinc Date: Mon, 23 Feb 2026 20:37:51 +0100 Subject: [PATCH] Fix correct unet detection for LongCat-Image with ading required keys. --- comfy/supported_models.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/comfy/supported_models.py b/comfy/supported_models.py index aaf2e8a88..12b2d3f0f 100644 --- a/comfy/supported_models.py +++ b/comfy/supported_models.py @@ -1687,6 +1687,12 @@ class LongCatImage(supported_models_base.BASE): "txt_ids_dims": [1, 2], } + required_keys = { + "x_embedder.weight": None, + "context_embedder.weight": None, + "single_transformer_blocks.10.attn.to_q.weight": None, + } + sampling_settings = { }