From ea61c3a916bbefa1989a006ea78e39311d3629ef Mon Sep 17 00:00:00 2001 From: Sweaterdog Date: Fri, 14 Mar 2025 12:57:18 -0700 Subject: [PATCH] Update tts_process.js Fixed a typo --- src/process/tts_process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process/tts_process.js b/src/process/tts_process.js index 199cc54..977d783 100644 --- a/src/process/tts_process.js +++ b/src/process/tts_process.js @@ -119,7 +119,7 @@ function recordAndTranscribeOnce() { console.log("Transcription:", text); // Format message so it looks like: "[SERVER] hello there" - const finalMessage = `[${TTS_USERNAME}] ${text}`; + const finalMessage = `[${STT_USERNAME}] ${text}`; // If STT_AGENT_NAME is empty, broadcast to all agents if (!STT_AGENT_NAME.trim()) {