From 3867bc63029565678959820f90d7186cb6e58154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Mon, 9 Feb 2026 14:33:08 -0800 Subject: [PATCH] LLMUserAggregator: update turn analyzer warning --- .../aggregators/llm_response_universal.py | 20 +------------------ 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/src/pipecat/processors/aggregators/llm_response_universal.py b/src/pipecat/processors/aggregators/llm_response_universal.py index 9cc3dabd8..3b162d48f 100644 --- a/src/pipecat/processors/aggregators/llm_response_universal.py +++ b/src/pipecat/processors/aggregators/llm_response_universal.py @@ -598,25 +598,7 @@ class LLMUserAggregator(LLMContextAggregator): if not frame.turn_params: return - logger.warning( - f"{self}: `turn_analyzer` in base input transport is deprecated. " - "Use `LLMUserAggregator`'s new `user_turn_strategies` parameter with " - "`TurnAnalyzerUserTurnStopStrategy` instead:\n" - "\n" - " context_aggregator = LLMContextAggregatorPair(\n" - " context,\n" - " user_params=LLMUserAggregatorParams(\n" - " ...,\n" - " user_turn_strategies=UserTurnStrategies(\n" - " stop=[\n" - " TurnAnalyzerUserTurnStopStrategy(\n" - " turn_analyzer=LocalSmartTurnAnalyzerV3(params=SmartTurnParams())\n" - " )\n" - " ],\n" - " )\n" - " ),\n" - " )" - ) + logger.warning(f"{self}: `turn_analyzer` in base input transport is deprecated.") await self._user_turn_controller.update_strategies(ExternalUserTurnStrategies())