mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-15 05:45:19 +00:00
fix: disable empty string
This commit is contained in:
parent
f43d255e8f
commit
ea80285e9c
1 changed files with 8 additions and 6 deletions
|
|
@ -199,6 +199,7 @@
|
|||
if (res) {
|
||||
console.log(res.text);
|
||||
|
||||
if (res.text !== '') {
|
||||
const _responses = await submitPrompt(res.text);
|
||||
console.log(_responses);
|
||||
|
||||
|
|
@ -209,6 +210,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const assistantSpeakingHandler = async (content) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue