Skip to content

Commit

Permalink
[BUGFIX] Limit tts model selection to V3 models
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharrnah committed Dec 8, 2022
1 parent 2503325 commit c8419a3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions websocket_clients/websocket-remote/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,9 @@
// add all available models to language optgroup
for (let i2 = 0; i2 < opt.models.length; i2++) {
let opt2 = opt.models[i2];
if (!opt2.includes("v3")) {
continue;
}

let el = document.createElement("option");
el.textContent = opt2;
Expand Down

0 comments on commit c8419a3

Please sign in to comment.