Merge pull request #3434 from pipecat-ai/aleix/context-appregator-pair-tuple

context aggregator pair tuple
This commit is contained in:
Aleix Conchillo Flaqué
2026-01-13 14:12:51 -08:00
committed by GitHub
156 changed files with 461 additions and 471 deletions

View File

@@ -94,7 +94,7 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments):
# },
],
)
context_aggregator = LLMContextAggregatorPair(context)
user_aggregator, assistant_aggregator = LLMContextAggregatorPair(context)
user_aggregator = context_aggregator.user()
assistant_aggregator = context_aggregator.assistant()