mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-16 20:07:49 +01:00
fix: kokorojs tts
This commit is contained in:
@@ -279,7 +279,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (const [idx, sentence] of messageContentParts.entries()) {
|
for (const [idx, sentence] of messageContentParts.entries()) {
|
||||||
const blob = await $TTSWorker
|
const url = await $TTSWorker
|
||||||
.generate({
|
.generate({
|
||||||
text: sentence,
|
text: sentence,
|
||||||
voice: $settings?.audio?.tts?.voice ?? $config?.audio?.tts?.voice
|
voice: $settings?.audio?.tts?.voice ?? $config?.audio?.tts?.voice
|
||||||
@@ -292,8 +292,7 @@
|
|||||||
loadingSpeech = false;
|
loadingSpeech = false;
|
||||||
});
|
});
|
||||||
|
|
||||||
if (blob) {
|
if (url) {
|
||||||
const url = URL.createObjectURL(blob);
|
|
||||||
$audioQueue.enqueue(url);
|
$audioQueue.enqueue(url);
|
||||||
loadingSpeech = false;
|
loadingSpeech = false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user