Timothy J. Baek 10 月之前
父节点
当前提交
6d9ed32929
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/lib/components/chat/MessageInput/CallOverlay.svelte

+ 2 - 1
src/lib/components/chat/MessageInput/CallOverlay.svelte

@@ -270,8 +270,9 @@
 				}
 
 				if (assistantSpeaking) {
+					// Mute the audio if the assistant is speaking
 					analyser.maxDecibels = 0;
-					analyser.minDecibels = -10;
+					analyser.minDecibels = -1;
 				} else {
 					analyser.minDecibels = MIN_DECIBELS;
 					analyser.maxDecibels = -30;