@@ -154,6 +154,7 @@ class FieldDescriptions:
154154 clip = "CLIP (tokenizer, text encoder, LoRAs) and skipped layer count"
155155 t5_encoder = "T5 tokenizer and text encoder"
156156 glm_encoder = "GLM (THUDM) tokenizer and text encoder"
157+ qwen3_encoder = "Qwen3 tokenizer and text encoder"
157158 clip_embed_model = "CLIP Embed loader"
158159 clip_g_model = "CLIP-G Embed loader"
159160 unet = "UNet (scheduler, LoRAs)"
@@ -169,6 +170,7 @@ class FieldDescriptions:
169170 flux_model = "Flux model (Transformer) to load"
170171 sd3_model = "SD3 model (MMDiTX) to load"
171172 cogview4_model = "CogView4 model (Transformer) to load"
173+ z_image_model = "Z-Image model (Transformer) to load"
172174 sdxl_main_model = "SDXL Main model (UNet, VAE, CLIP1, CLIP2) to load"
173175 sdxl_refiner_model = "SDXL Refiner Main Modde (UNet, VAE, CLIP2) to load"
174176 onnx_main_model = "ONNX Main model (UNet, VAE, CLIP) to load"
@@ -321,6 +323,12 @@ class CogView4ConditioningField(BaseModel):
321323 conditioning_name : str = Field (description = "The name of conditioning tensor" )
322324
323325
326+ class ZImageConditioningField (BaseModel ):
327+ """A Z-Image conditioning tensor primitive value"""
328+
329+ conditioning_name : str = Field (description = "The name of conditioning tensor" )
330+
331+
324332class ConditioningField (BaseModel ):
325333 """A conditioning tensor primitive value"""
326334
0 commit comments