Skip to content

Commit 48f86bb

Browse files
committed
tweaked text
1 parent dec3cd9 commit 48f86bb

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

ggml/src/ggml-cuda/ggml-cuda.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ static ggml_cuda_device_info ggml_cuda_init() {
221221
//#else
222222
// GGML_LOG_INFO("%s: GGML_CUDA_FORCE_CUBLAS: no\n", __func__);
223223
//#endif // GGML_CUDA_FORCE_CUBLAS
224-
GGML_LOG_INFO("---\nInitializing CUDA/HIP, please wait, the following step may take a few minutes (only for first launch)...\nJust a moment, Please Be Patient...\n---\n");
224+
GGML_LOG_INFO("---\nInitializing CUDA/HIP, please wait, the following step may take a few minutes (only for first launch)...\n---\n");
225225
GGML_LOG_INFO("%s: found %d " GGML_CUDA_NAME " devices:\n", __func__, info.device_count);
226226
for (int id = 0; id < info.device_count; ++id) {
227227
int device_vmm = 0;

gpttype_adapter.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2440,6 +2440,7 @@ ModelLoadResult gpttype_load_model(const load_model_inputs inputs, FileFormat in
24402440
add_bos_token = false;
24412441
}
24422442
}
2443+
printf("Starting model warm up, please wait a moment...\n");
24432444

24442445
//warmup at least 33 tokens to trigger batch
24452446
std::vector<int> tmp;

klite.embd

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 &quot;none&quot; 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

Comments
 (0)