From 096067b0973008fd45cf6c7af4dd4be92be8c8a1 Mon Sep 17 00:00:00 2001 From: Mark Backman Date: Thu, 3 Jul 2025 13:23:13 -0700 Subject: [PATCH] GoogleLLMService: Linting fixes --- src/pipecat/services/google/llm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipecat/services/google/llm.py b/src/pipecat/services/google/llm.py index f7589beaf..f0e74d2ce 100644 --- a/src/pipecat/services/google/llm.py +++ b/src/pipecat/services/google/llm.py @@ -67,8 +67,8 @@ try: Content, FunctionCall, FunctionResponse, - HttpOptions, GenerateContentConfig, + HttpOptions, Part, ) except ModuleNotFoundError as e: @@ -723,7 +723,7 @@ class GoogleLLMService(LLMService): def _create_client(self, api_key: str, http_options: Optional[HttpOptions] = None): self._client = genai.Client(api_key=api_key, http_options=http_options) - + def needs_mcp_alternate_schema(self) -> bool: """Check if this LLM service requires alternate MCP schema.