Update tts_process.js

Fixed a typo
This commit is contained in:
Sweaterdog 2025-03-14 12:57:18 -07:00 committed by GitHub
parent 809f669b19
commit ea61c3a916
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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()) {