From f69225df245991dd0b1e212737805f48791d5cc3 Mon Sep 17 00:00:00 2001 From: comfyanonymous <121283862+comfyanonymous@users.noreply.github.com> Date: Wed, 3 Jun 2026 08:55:18 -0700 Subject: [PATCH] Mark DualModelGuider as experimental (#14262) --- comfy_extras/nodes_custom_sampler.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comfy_extras/nodes_custom_sampler.py b/comfy_extras/nodes_custom_sampler.py index b790d7aac..2f4ff1f70 100644 --- a/comfy_extras/nodes_custom_sampler.py +++ b/comfy_extras/nodes_custom_sampler.py @@ -951,6 +951,7 @@ class DualModelGuider(io.ComfyNode): node_id="DualModelGuider", display_name="Dual Model CFG Guider", category="model/sampling/guiders", + is_experimental=True, inputs=[ io.Model.Input("model", tooltip="Model used for the positive (conditional) pass."), io.Model.Input("model_negative", optional=True, tooltip="Model used for the negative (unconditional) pass. Use the same model for ordinary CFG."),