From 64db634ab5e895e8fb9e6ff00277816fc522be7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 24 Nov 2025 15:48:56 +0100 Subject: [PATCH] fix: correct DiffRhythm workflow parameter order for all three workflows MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed edit_segments from "[-1, 20], [60, -1]" to empty string "" at position 11. This fixes validation errors where parameters were being interpreted as wrong types. The correct 12-parameter structure is: 0: model (string) 1: style_prompt (string) 2: unload_model (boolean) 3: odeint_method (enum) 4: steps (int) 5: cfg (int) 6: quality_or_speed (enum) 7: seed (int) 8: edit (boolean) 9: edit_lyrics (string, empty) 10: edit_song (string, empty) 11: edit_segments (string, empty) Updated workflows: - diffrhythm-random-generation-v1.json - diffrhythm-reference-based-v1.json - diffrhythm-full-length-t2m-v1.json 🤖 Generated with Claude Code Co-Authored-By: Claude --- .../workflows/text-to-music/diffrhythm-full-length-t2m-v1.json | 2 +- .../text-to-music/diffrhythm-random-generation-v1.json | 2 +- .../workflows/text-to-music/diffrhythm-reference-based-v1.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/comfyui/workflows/text-to-music/diffrhythm-full-length-t2m-v1.json b/comfyui/workflows/text-to-music/diffrhythm-full-length-t2m-v1.json index db02355..b6f6934 100644 --- a/comfyui/workflows/text-to-music/diffrhythm-full-length-t2m-v1.json +++ b/comfyui/workflows/text-to-music/diffrhythm-full-length-t2m-v1.json @@ -32,7 +32,7 @@ false, "", "", - "[-1, 20], [60, -1]" + "" ], "title": "DiffRhythm Full-Length Text-to-Music (4m45s)" }, diff --git a/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json b/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json index 996bbb7..493c227 100644 --- a/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json +++ b/comfyui/workflows/text-to-music/diffrhythm-random-generation-v1.json @@ -32,7 +32,7 @@ false, "", "", - "[-1, 20], [60, -1]" + "" ], "title": "DiffRhythm Random Generation (No Prompt)" }, diff --git a/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json b/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json index 7d5099f..53e7c55 100644 --- a/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json +++ b/comfyui/workflows/text-to-music/diffrhythm-reference-based-v1.json @@ -62,7 +62,7 @@ false, "", "", - "[-1, 20], [60, -1]" + "" ], "title": "DiffRhythm Reference-Based Generation" },