LLMAssistantContextAggregator: add missing variable initialization

This commit is contained in:
Aleix Conchillo Flaqué
2025-02-14 15:55:22 -08:00
parent 2ce9402571
commit 63950912f0

View File

@@ -358,6 +358,8 @@ class LLMAssistantContextAggregator(LLMContextResponseAggregator):
super().__init__(context=context, role="assistant", **kwargs)
self._expect_stripped_words = expect_stripped_words
self._started = False
self.reset()
async def process_frame(self, frame: Frame, direction: FrameDirection):