From 6ed79167c77ed07189a0f0fddb1527c3a838aac1 Mon Sep 17 00:00:00 2001 From: OStier128 <104584941+Sizzlyo@users.noreply.github.com> Date: Sat, 25 Apr 2026 01:47:38 -0400 Subject: [PATCH] Update processing.py feat: Add blank speaker to sounds label --- Server/src/core/processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/core/processing.py b/Server/src/core/processing.py index fa6ee8a..a9f55ab 100644 --- a/Server/src/core/processing.py +++ b/Server/src/core/processing.py @@ -211,7 +211,7 @@ async def ps(buf): sound_executor, diarization.get_sounds, buf.flatten() ) if sc > 0.45 and s not in ["Silence", "Speech"]: - await websocket.connection.send_json({"type": "sound", "text": s}) + await websocket.connection.send_json({"type": "sound", "text": s, "speaker": ""}) except: pass