From 2eddb6ffdac7ae3098cff2adc6da313f0a7f1e41 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Thu, 14 Aug 2025 14:46:53 -0400 Subject: [PATCH] [WIP] Universal (LLM-agnostic) context machinery to support runtime LLM switching. - Remove outdated comment --- .../processors/aggregators/llm_response_universal.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/pipecat/processors/aggregators/llm_response_universal.py b/src/pipecat/processors/aggregators/llm_response_universal.py index a97e9e0f8..55d758746 100644 --- a/src/pipecat/processors/aggregators/llm_response_universal.py +++ b/src/pipecat/processors/aggregators/llm_response_universal.py @@ -169,11 +169,6 @@ class LLMContextAggregator(FrameProcessor): self._aggregation = "" -# NOTE: the "universal" suffix is just meant to distinguish this aggregator -# from the old LLMUserContextAggregator while we gradually migrate service to -# use the new universal LLMContext and associated patterns. The suffix will go -# away once the migration is complete and the other LLMUserContextAggregator is -# deprecated. class LLMUserAggregator(LLMContextAggregator): """User LLM aggregator that processes speech-to-text transcriptions. @@ -511,11 +506,6 @@ class LLMUserAggregator(LLMContextAggregator): self._emulating_vad = True -# NOTE: the "universal" suffix is just meant to distinguish this aggregator -# from the old LLMAssistantContextAggregator while we gradually migrate service -# to use the new universal LLMContext and associated patterns. The suffix will -# go away once the migration is complete and the other -# LLMAssistantContextAggregator is deprecated. class LLMAssistantAggregator(LLMContextAggregator): """Assistant LLM aggregator that processes bot responses and function calls.