@@ -13599,6 +13599,7 @@ Current version indicated by LITEVER below.
1359913599 {
1360013600 document.getElementById("xtts_container").classList.add("hidden");
1360113601 document.getElementById("oai_tts_container").classList.add("hidden");
13602+ document.getElementById("pollinations_tts_container").classList.add("hidden");
1360213603 document.getElementById("alltalk_specific_controls").classList.add("hidden");
1360313604 document.getElementById("kcpp_tts_container").classList.add("hidden");
1360413605
@@ -13616,6 +13617,9 @@ Current version indicated by LITEVER below.
1361613617 }
1361713618 else if(selectedTTS == OAI_TTS_ID) {
1361813619 document.getElementById("oai_tts_container").classList.remove("hidden");
13620+ }else if(selectedTTS == POLLINATIONS_TTS_ID)
13621+ {
13622+ document.getElementById("pollinations_tts_container").classList.remove("hidden");
1361913623 }
1362013624 else if(selectedTTS == KCPP_TTS_ID) {
1362113625 document.getElementById("kcpp_tts_container").classList.remove("hidden");
@@ -13840,7 +13844,7 @@ Current version indicated by LITEVER below.
1384013844 {
1384113845 const pollinations_params = new URLSearchParams({
1384213846 model:"openai-audio",
13843- voice:"nova" ,
13847+ voice:document.getElementById("pollinations_voices").value ,
1384413848 private: true,
1384513849 referrer: "koboldai"
1384613850 });
@@ -22434,6 +22438,21 @@ Current version indicated by LITEVER below.
2243422438 </tr><tr style="font-size:12px;padding:2px;margin:0px 0 0;"><td>TTS Voice </td><td><input class="settinglabel miniinput" type="text" value="alloy" id="oai_tts_voice" style="margin-left:3px; height:18px; width: 55px; padding: 2px;"></td></tr>
2243522439 </table>
2243622440 </div>
22441+ <div id="pollinations_tts_container" class="settinglabel hidden">
22442+ <table width="100%"><tr style="font-size:12px;padding:2px;margin:0px 0 0;"><td>Voice:</td><td>
22443+ <select class="form-control" id="pollinations_voices" style="font-size:12px;height:20px;padding:0;margin:0px 0 0;">
22444+ <option value="alloy">alloy</option>
22445+ <option value="ash">ash</option>
22446+ <option value="ballad">ballad</option>
22447+ <option value="coral">coral</option>
22448+ <option value="echo">echo</option>
22449+ <option value="fable">fable</option>
22450+ <option value="nova" selected>nova</option>
22451+ <option value="onyx">onyx</option>
22452+ <option value="sage">sage</option>
22453+ <option value="shimmer">shimmer</option>
22454+ </select></td></tr></table>
22455+ </div>
2243722456 <div id="kcpp_tts_container" class="hidden">
2243822457 <div class="color_red hidden" id="nokcpptts">KoboldCpp TTS Unavailable</div>
2243922458 <div class="settinglabel">
@@ -22504,7 +22523,7 @@ Current version indicated by LITEVER below.
2250422523 <input title="Negative Prompt" style="width:calc(100% - 110px);" type="text" placeholder="Default Negative Prompt. Put "none" to skip" value="" id="negpromptinput">
2250522524 </div>
2250622525 <div class="inlinelabel">
22507- <div class="justifyleft rowitem">Number of Steps : </div>
22526+ <div class="justifyleft rowitem">Step Count : </div>
2250822527 <input title="Number of Steps" type="text" inputmode="decimal" id="img_steps" style="width:60px">
2250922528 </div>
2251022529 <div class="inlinelabel">
0 commit comments