Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
f9f1d9d2
"backend/apps/web/routers/documents.py" did not exist on "2603ac30bc4dc04069759cd1d5ce9eb2f747cd9e"
Commit
f9f1d9d2
authored
Feb 09, 2024
by
Timothy J. Baek
Browse files
fix: convo mode
parent
3015bb76
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
src/lib/components/chat/Settings/Voice.svelte
src/lib/components/chat/Settings/Voice.svelte
+11
-1
No files found.
src/lib/components/chat/Settings/Voice.svelte
View file @
f9f1d9d2
...
@@ -40,7 +40,17 @@
...
@@ -40,7 +40,17 @@
const toggleConversationMode = async () => {
const toggleConversationMode = async () => {
conversationMode = !conversationMode;
conversationMode = !conversationMode;
saveSettings({ conversationMode: conversationMode });
if (conversationMode) {
responseAutoPlayback = true;
speechAutoSend = true;
}
saveSettings({
conversationMode: conversationMode,
responseAutoPlayback: responseAutoPlayback,
speechAutoSend: speechAutoSend
});
};
};
const toggleResponseAutoPlayback = async () => {
const toggleResponseAutoPlayback = async () => {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment