examples: fix examples to use LLMFullResponseEndFrame

This commit is contained in:
Aleix Conchillo Flaqué
2024-05-19 09:39:34 -07:00
parent 36dd4933e9
commit 810dc30d3d
6 changed files with 13 additions and 9 deletions

View File

@@ -63,7 +63,7 @@ class ParallelPipeline(FrameProcessor):
if not isinstance(processors, list):
raise TypeError(f"ParallelPipeline argument {processors} is not a list")
# We add a source at before the pipeline and a sink after.
# We will add a source before the pipeline and a sink after.
source = Source(self._up_queue)
sink = Sink(self._down_queue)
self._sources.append(source)