Skip to content
Snippets Groups Projects
Unverified Commit ee057786 authored by David Wiszowaty's avatar David Wiszowaty Committed by GitHub
Browse files

fix: Chat messages with tool calls incorrectly mapping to Vertex message (#17893)

parent b40f82ad
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,9 @@ def convert_chat_message_to_gemini_content(
raise ValueError("Only text and image_url types are supported!")
return Part.from_image(image)
if message.content == "" and "tool_calls" in message.additional_kwargs:
if (
message.content == "" or message.content is None
) and "tool_calls" in message.additional_kwargs:
tool_calls = message.additional_kwargs["tool_calls"]
parts = [
Part._from_gapic(raw_part=gapic_content_types.Part(function_call=tool_call))
......
......@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-llms-vertex"
readme = "README.md"
version = "0.4.2"
version = "0.4.3"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
......
from google.cloud.aiplatform_v1beta1 import FunctionCall
from llama_index.core.base.llms.types import ChatMessage, MessageRole
from llama_index.llms.vertex.gemini_utils import (
convert_chat_message_to_gemini_content,
is_gemini_model,
)
def test_is_gemini_model():
assert is_gemini_model("gemini-2.0-flash") is True
assert is_gemini_model("chat-bison") is False
def test_convert_chat_message_to_gemini_content_with_function_call():
message = ChatMessage(
role=MessageRole.ASSISTANT,
content="",
additional_kwargs={
"tool_calls": [
FunctionCall(
name="test_fn",
args={"arg1": "val1"},
)
]
},
)
result = convert_chat_message_to_gemini_content(message=message, is_history=True)
assert result.role == "model"
assert len(result.parts) == 1
assert result.parts[0].function_call is not None
assert result.parts[0].function_call.name == "test_fn"
assert result.parts[0].function_call.args == {"arg1": "val1"}
def test_convert_chat_message_to_gemini_content_with_content():
message = ChatMessage(
role=MessageRole.USER,
content="test content",
)
result = convert_chat_message_to_gemini_content(message=message, is_history=True)
assert result.role == "user"
assert result.text == "test content"
assert len(result.parts) == 1
assert result.parts[0].text == "test content"
assert result.parts[0].function_call is None
def test_convert_chat_message_to_gemini_content_no_history():
message = ChatMessage(
role=MessageRole.USER,
content="test content",
)
result = convert_chat_message_to_gemini_content(message=message, is_history=False)
assert len(result) == 1
assert result[0].text == "test content"
assert result[0].function_call is None
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment