From 1dccbe7c0b32cd7bb0105f244950e9ed14386651 Mon Sep 17 00:00:00 2001 From: filipi87 Date: Tue, 10 Feb 2026 11:27:13 -0300 Subject: [PATCH] Simplified context aggregators, _handle_text() to only check frame.append_to_context instead of also checking self._started --- src/pipecat/processors/aggregators/llm_response.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/processors/aggregators/llm_response.py b/src/pipecat/processors/aggregators/llm_response.py index e11ededbf..44e5ce252 100644 --- a/src/pipecat/processors/aggregators/llm_response.py +++ b/src/pipecat/processors/aggregators/llm_response.py @@ -1059,7 +1059,7 @@ class LLMAssistantContextAggregator(LLMContextResponseAggregator): await self.push_aggregation() async def _handle_text(self, frame: TextFrame): - if not self._started or not frame.append_to_context: + if not frame.append_to_context: return if self._params.expect_stripped_words: