fix: add missing edit_song and edit_lyrics parameters to DiffRhythm workflows
All checks were successful
Build and Push RunPod Docker Image / build-and-push (push) Successful in 14s

Fix "edit song, edit lyrics, edit segments must be provided" error by adding
the two missing parameters to all three DiffRhythm workflow files:

- diffrhythm-random-generation-v1.json
- diffrhythm-reference-based-v1.json
- diffrhythm-full-length-t2m-v1.json

Added empty string parameters at positions 9 and 10 in widgets_values array:
- edit_song: "" (empty when edit=false)
- edit_lyrics: "" (empty when edit=false)

The DiffRhythmRun node requires 12 parameters total, not 10. These workflows
use edit=false (no editing), so the edit parameters should be empty strings.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-24 12:55:58 +01:00
parent 744bbd0190
commit 56476f4230
3 changed files with 6 additions and 0 deletions

View File

@@ -30,6 +30,8 @@
"quality", "quality",
123, 123,
false, false,
"",
"",
"[-1, 20], [60, -1]" "[-1, 20], [60, -1]"
], ],
"title": "DiffRhythm Full-Length Text-to-Music (4m45s)" "title": "DiffRhythm Full-Length Text-to-Music (4m45s)"

View File

@@ -30,6 +30,8 @@
"speed", "speed",
-1, -1,
false, false,
"",
"",
"[-1, 20], [60, -1]" "[-1, 20], [60, -1]"
], ],
"title": "DiffRhythm Random Generation (No Prompt)" "title": "DiffRhythm Random Generation (No Prompt)"

View File

@@ -60,6 +60,8 @@
"speed", "speed",
456, 456,
false, false,
"",
"",
"[-1, 20], [60, -1]" "[-1, 20], [60, -1]"
], ],
"title": "DiffRhythm Reference-Based Generation" "title": "DiffRhythm Reference-Based Generation"