From bea6fb2375b68529f40f7660da7b79e90e701f0f Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 26 Aug 2024 13:08:28 -0700 Subject: [PATCH] fix(vertex_httpx.py): use special param --- litellm/llms/vertex_httpx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/llms/vertex_httpx.py b/litellm/llms/vertex_httpx.py index 1e842ce57e..2f8a27ffe8 100644 --- a/litellm/llms/vertex_httpx.py +++ b/litellm/llms/vertex_httpx.py @@ -648,7 +648,7 @@ class VertexGeminiConfig: optional_params["presence_penalty"] = value if (param == "tools" or param == "functions") and isinstance(value, list): optional_params["tools"] = self._map_function(value=value) - optional_params["is_function_call"] = ( + optional_params["litellm_param_is_function_call"] = ( True if param == "functions" else False ) if param == "tool_choice" and (