Skip to content

Commit f420577

Browse files
authored
genai: release 2.1.6 (#1012)
1 parent 8507b2c commit f420577

File tree

3 files changed

+15
-23
lines changed

3 files changed

+15
-23
lines changed

libs/genai/poetry.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/genai/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "langchain-google-genai"
3-
version = "2.1.5"
3+
version = "2.1.6"
44
description = "An integration package connecting Google's genai package and LangChain"
55
authors = []
66
readme = "README.md"
@@ -12,7 +12,7 @@ license = "MIT"
1212

1313
[tool.poetry.dependencies]
1414
python = ">=3.9,<4.0"
15-
langchain-core = "^0.3.62"
15+
langchain-core = "^0.3.66"
1616
google-ai-generativelanguage = "^0.6.18"
1717
pydantic = ">=2,<3"
1818
filetype = "^1.2.0"

libs/genai/tests/integration_tests/test_standard.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,6 @@ def test_usage_metadata_streaming(self, model: BaseChatModel) -> None:
5555
def test_bind_runnables_as_tools(self, model: BaseChatModel) -> None:
5656
super().test_bind_runnables_as_tools(model)
5757

58-
@pytest.mark.xfail(reason=("investigate"))
59-
def test_tool_calling_with_no_arguments(self, model: BaseChatModel) -> None:
60-
super().test_tool_calling_with_no_arguments(model)
61-
6258

6359
class TestGeminiAIStandard(ChatModelIntegrationTests):
6460
@property
@@ -100,7 +96,3 @@ def supported_usage_metadata_details(
10096
],
10197
]:
10298
return {"invoke": [], "stream": []}
103-
104-
@pytest.mark.xfail(reason=("investigate"))
105-
def test_tool_calling_with_no_arguments(self, model: BaseChatModel) -> None:
106-
super().test_tool_calling_with_no_arguments(model)

0 commit comments

Comments
 (0)