small fix as per aleix

This commit is contained in:
Kwindla Hultman Kramer
2024-09-30 09:26:06 -07:00
parent fef393dcac
commit 539e0b66fb

View File

@@ -115,7 +115,7 @@ class LLMResponseAggregator(FrameProcessor):
if self._expect_stripped_words:
self._aggregation += f" {frame.text}" if self._aggregation else frame.text
else:
self._aggregation += frame.text if self._aggregation else frame.text
self._aggregation += frame.text
# We have recevied a complete sentence, so if we have seen the
# end frame and we were still aggregating, it means we should
# send the aggregation.