Updated list of params for Audio Inference Settings#143
Updated list of params for Audio Inference Settings#143Sirsho1997 wants to merge 1 commit intomainfrom
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. To trigger a review, include ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches✨ Simplify code
Comment |
There was a problem hiding this comment.
Pull request overview
This PR updates the Runware audio nodes to expose additional ACE-Step/ACE-Step v1.5 generation parameters in the Audio Inference Settings node, and expands the Audio Model Search lists to include new ACE-Step v1.5 XL variants.
Changes:
- Added optional Audio Settings inputs for
cfgIntervalStart,cfgIntervalEnd,repaintMode, andrepaintStrength, plus corresponding “use*” toggles and payload emission. - Updated Audio Settings node documentation strings to reflect the new parameters.
- Added
runware:ace-step@v1.5-xl-baseandrunware:ace-step@v1.5-xl-turboto both backend (Python) and frontend (JS) audio model lists.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| modules/audioSettings.py | Adds new configurable audio inference settings fields and includes them in the emitted settings payload. |
| modules/audioModelSearch.py | Extends ACE model dropdown list with v1.5 XL Base/Turbo variants. |
| clientlibs/utils.js | Mirrors the new ACE v1.5 XL models in the frontend audio model filter list. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| if use_cfg_interval_start: | ||
| settings["cfgIntervalStart"] = float(cfg_interval_start) | ||
|
|
||
| if use_cfg_interval_end: | ||
| settings["cfgIntervalEnd"] = float(cfg_interval_end) |
| if use_repaint_mode: | ||
| settings["repaintMode"] = repaint_mode | ||
|
|
||
| if use_repaint_strength: |
No description provided.