LLMContextAggregatorPair: make strategy logs less verbose

This commit is contained in:
Aleix Conchillo Flaqué
2026-01-13 15:11:22 -08:00
parent 248dac3a9d
commit 0d6bdbee10
2 changed files with 4 additions and 4 deletions

View File

@@ -530,7 +530,7 @@ class LLMUserAggregator(LLMContextAggregator):
strategy: BaseUserTurnStartStrategy,
params: UserTurnStartedParams,
):
logger.debug(f"{self}: User started speaking (user turn start strategy: {strategy})")
logger.debug(f"{self}: User started speaking (strategy: {strategy})")
self._user_turn_start_timestamp = time_now_iso8601()
@@ -548,7 +548,7 @@ class LLMUserAggregator(LLMContextAggregator):
strategy: BaseUserTurnStopStrategy,
params: UserTurnStoppedParams,
):
logger.debug(f"{self}: User stopped speaking (user turn stop strategy: {strategy})")
logger.debug(f"{self}: User stopped speaking (strategy: {strategy})")
if params.enable_user_speaking_frames:
await self.broadcast_frame(UserStoppedSpeakingFrame)

View File

@@ -155,7 +155,7 @@ class UserTurnProcessor(FrameProcessor):
strategy: BaseUserTurnStartStrategy,
params: UserTurnStartedParams,
):
logger.debug(f"{self}: User started speaking (user turn start strategy: {strategy})")
logger.debug(f"{self}: User started speaking (strategy: {strategy})")
if params.enable_user_speaking_frames:
await self.broadcast_frame(UserStartedSpeakingFrame)
@@ -171,7 +171,7 @@ class UserTurnProcessor(FrameProcessor):
strategy: BaseUserTurnStopStrategy,
params: UserTurnStoppedParams,
):
logger.debug(f"{self}: User stopped speaking (user turn stop strategy: {strategy})")
logger.debug(f"{self}: User stopped speaking (strategy: {strategy})")
if params.enable_user_speaking_frames:
await self.broadcast_frame(UserStoppedSpeakingFrame)