fix: correct DiffRhythm workflow parameter order for all three workflows
All checks were successful
Build and Push RunPod Docker Image / build-and-push (push) Successful in 15s

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 <noreply@anthropic.com>
This commit is contained in:
2025-11-24 15:48:56 +01:00
parent 56476f4230
commit 64db634ab5
3 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@
false,
"",
"",
"[-1, 20], [60, -1]"
""
],
"title": "DiffRhythm Full-Length Text-to-Music (4m45s)"
},

View File

@@ -32,7 +32,7 @@
false,
"",
"",
"[-1, 20], [60, -1]"
""
],
"title": "DiffRhythm Random Generation (No Prompt)"
},

View File

@@ -62,7 +62,7 @@
false,
"",
"",
"[-1, 20], [60, -1]"
""
],
"title": "DiffRhythm Reference-Based Generation"
},