Use TextAggregationMode.TOKEN in the 05-sync-speech-and-image

example since the SentenceAggregator already provides complete sentences.
This commit is contained in:
Paul Kompfner
2026-03-13 18:43:54 -04:00
parent 0f1ff16af1
commit c3d6e965d8
2 changed files with 7 additions and 2 deletions

View File

@@ -633,7 +633,7 @@ class FrameProcessor(BaseObject):
async def pause_processing_frames(self):
"""Pause processing of queued frames."""
logger.trace(f"{self}: pausing frame processing")
logger.debug(f"{self}: pausing frame processing")
self.__should_block_frames = True
if self.__process_event:
self.__process_event.clear()
@@ -647,7 +647,7 @@ class FrameProcessor(BaseObject):
async def resume_processing_frames(self):
"""Resume processing of queued frames."""
logger.trace(f"{self}: resuming frame processing")
logger.debug(f"{self}: resuming frame processing")
if self.__process_event:
self.__process_event.set()