From 996d4a26166835c1914f63149590943c561b5543 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 23 Nov 2025 01:07:09 +0100 Subject: [PATCH] fix: correct IPAdapterAdvanced widget parameter order MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed parameter order for IPAdapterAdvanced nodes: 1. weight (float) - 0.85/0.6/0.5 2. weight_type (string) - "ease in-out" 3. combine_embeds (string) - "average" 4. start_at (float) - 0.0 5. end_at (float) - 1.0 6. embeds_scaling (string) - "V only" Previous order had combine_embeds and embeds_scaling values swapped, causing validation errors. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../ipadapter-composition-i2i-production-v1.json | 12 ++++++------ .../ipadapter-face-i2i-production-v1.json | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/comfyui/workflows/image-to-image/ipadapter-composition-i2i-production-v1.json b/comfyui/workflows/image-to-image/ipadapter-composition-i2i-production-v1.json index b65e126..1d00323 100644 --- a/comfyui/workflows/image-to-image/ipadapter-composition-i2i-production-v1.json +++ b/comfyui/workflows/image-to-image/ipadapter-composition-i2i-production-v1.json @@ -231,11 +231,11 @@ ], "widgets_values": [ 0.6, - 0.0, "ease in-out", - 1.0, + "average", 0.0, - 1.0 + 1.0, + "V only" ], "title": "Apply IP-Adapter 1", "flags": {}, @@ -285,11 +285,11 @@ ], "widgets_values": [ 0.5, - 0.0, "ease in-out", - 1.0, + "average", 0.0, - 1.0 + 1.0, + "V only" ], "title": "Apply IP-Adapter 2", "flags": {}, diff --git a/comfyui/workflows/image-to-image/ipadapter-face-i2i-production-v1.json b/comfyui/workflows/image-to-image/ipadapter-face-i2i-production-v1.json index aeda723..65a8ab6 100644 --- a/comfyui/workflows/image-to-image/ipadapter-face-i2i-production-v1.json +++ b/comfyui/workflows/image-to-image/ipadapter-face-i2i-production-v1.json @@ -150,11 +150,11 @@ }, "widgets_values": [ 0.85, - 0.0, "ease in-out", - 1.0, + "average", 0.0, - 1.0 + 1.0, + "V only" ], "title": "Apply IP-Adapter Face", "flags": {},