From fc24267e0973a785d7b45d064038815d44b2bf5b Mon Sep 17 00:00:00 2001 From: Filipi Fuchter Date: Mon, 2 Jun 2025 22:15:53 -0300 Subject: [PATCH] Waiting for the LLM response to reset. --- src/pipecat/services/google/llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/services/google/llm.py b/src/pipecat/services/google/llm.py index b63b3786c..8960bda31 100644 --- a/src/pipecat/services/google/llm.py +++ b/src/pipecat/services/google/llm.py @@ -83,7 +83,7 @@ class GoogleUserContextAggregator(OpenAIUserContextAggregator): await self.push_frame(frame) # Reset our accumulator state. - self.reset() + await self.reset() class GoogleAssistantContextAggregator(OpenAIAssistantContextAggregator):