log cleanup
frdel committed
Jul 16, 2025 at 08:56 UTC
a87e4202f4a289e1bfb15c3b94add88596a2b503
1 file changed
-3
webui/components/chat/speech/speech-store.js
-3
@@ -193,8 +193,6 @@ const model = {
193
this.ttsStream.chunks = this.chunkText(cleanText);
194
if (this.ttsStream.chunks.length == 0) return;
195
196
- console.log("chunks updated", JSON.stringify(cleanText), this.ttsStream.chunks)
197
-
196
// if stream was already running, just updating chunks is enough
197
if (this.ttsStream.running) return;
198
else this.ttsStream.running = true; // proceed to running phase
@@ -222,7 +220,6 @@ const model = {
220
spoken.push(this.ttsStream.chunks[i]);
221
await this._speak(this.ttsStream.chunks[i], i > 0, () => terminator());
222
}
225
- console.log("finished speaking", spoken)
223
224
// at the end, finish stream data
225
this.ttsStream.running = false;