This commit is contained in:
Timothy Jaeryang Baek 2024-12-24 22:31:03 -07:00
parent d93107d1d6
commit 47419a77af
2 changed files with 3 additions and 25 deletions

View File

@ -1068,29 +1068,7 @@
if (message.content == '' && value == '\n') {
console.log('Empty response');
} else {
if ($settings?.splitLargeDeltas ?? false) {
if (value.length < 5) {
message.content += value;
} else {
while (value != '') {
const chunkSize = Math.min(Math.floor(Math.random() * 3) + 1, value.length);
const chunk = value.slice(0, chunkSize);
message.content += chunk;
history.messages[message.id] = message;
// Do not sleep if the tab is hidden
// Timers are throttled to 1s in hidden tabs
if (document?.visibilityState !== 'hidden') {
await sleep(5);
}
value = value.slice(chunkSize);
}
}
} else {
message.content += value;
}
message.content += value;
if (navigator.vibrate && ($settings?.hapticFeedback ?? false)) {
navigator.vibrate(5);

View File

@ -577,7 +577,7 @@
</div>
</div>
<div>
<!-- <div>
<div class=" py-0.5 flex w-full justify-between">
<div class=" self-center text-xs">
{$i18n.t('Fluidly stream large external response chunks')}
@ -597,7 +597,7 @@
{/if}
</button>
</div>
</div>
</div> -->
<div>
<div class=" py-0.5 flex w-full justify-between">