mirror of
https://github.com/open-webui/open-webui
synced 2024-11-25 21:38:43 +00:00
fix: call tts issue
This commit is contained in:
parent
12a6216477
commit
9ca2350a13
@ -456,7 +456,9 @@
|
|||||||
if ($config.audio.tts.engine !== '') {
|
if ($config.audio.tts.engine !== '') {
|
||||||
const res = await synthesizeOpenAISpeech(
|
const res = await synthesizeOpenAISpeech(
|
||||||
localStorage.token,
|
localStorage.token,
|
||||||
$settings?.audio?.tts?.voice ?? $config?.audio?.tts?.voice,
|
$settings?.audio?.tts?.defaultVoice === $config.audio.tts.voice
|
||||||
|
? ($settings?.audio?.tts?.voice ?? $config?.audio?.tts?.voice)
|
||||||
|
: $config?.audio?.tts?.voice,
|
||||||
content
|
content
|
||||||
).catch((error) => {
|
).catch((error) => {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
|
Loading…
Reference in New Issue
Block a user