From ce99924be4afe7350dbad690475dbcd725447379 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Thu, 15 Jan 2026 15:55:22 -0500 Subject: [PATCH] Add CHANGELOG entry describing fix for the missing "bot-llm-text" RTVI event when using realtime (speech-to-speech) services --- changelog/3446.fixed.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 changelog/3446.fixed.md diff --git a/changelog/3446.fixed.md b/changelog/3446.fixed.md new file mode 100644 index 000000000..64cc3cb32 --- /dev/null +++ b/changelog/3446.fixed.md @@ -0,0 +1,8 @@ +- Fixed an issue where the "bot-llm-text" RTVI event would not fire for realtime (speech-to-speech) services: + + - `AWSNovaSonicLLMService` + - `GeminiLiveLLMService` + - `OpenAIRealtimeLLMService` + - `GrokRealtimeLLMService` + + The issue was that these services weren't pushing `LLMTextFrame`s. Now they do.