From 3785481a4574a5bfc0fff6c0c989c6ab0904b265 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Fri, 25 Jul 2025 16:55:17 -0400 Subject: [PATCH] Progress on LLM failover support --- 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 0097384bf..ea9acd943 100644 --- a/src/pipecat/services/google/llm.py +++ b/src/pipecat/services/google/llm.py @@ -184,7 +184,7 @@ class GoogleLLMService(LLMService): f"{self}: Generating chat [{adapter.get_messages_for_logging(context)}]" ) - messages = context.messages + messages = llm_invocation_params["messages"] if ( llm_invocation_params.get("system_instruction") and self._system_instruction != llm_invocation_params["system_instruction"]