Skip to content

Commit 585f467

Browse files
authored
mistral[patch]: release 0.2.5 (#29463)
1 parent ca9d4e4 commit 585f467

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

libs/partners/mistralai/poetry.lock

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

libs/partners/mistralai/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "langchain-mistralai"
7-
version = "0.2.4"
7+
version = "0.2.5"
88
description = "An integration package connecting Mistral and LangChain"
99
authors = []
1010
readme = "README.md"
@@ -20,7 +20,7 @@ disallow_untyped_defs = "True"
2020

2121
[tool.poetry.dependencies]
2222
python = ">=3.9,<4.0"
23-
langchain-core = "^0.3.27"
23+
langchain-core = "^0.3.32"
2424
tokenizers = ">=0.15.1,<1"
2525
httpx = ">=0.25.2,<1"
2626
httpx-sse = ">=0.3.1,<1"

libs/partners/mistralai/tests/integration_tests/test_chat_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ class BookDict(TypedDict):
191191
def _check_parsed_result(result: Any, schema: Any) -> None:
192192
if schema == Book:
193193
assert isinstance(result, Book)
194-
elif schema == BookDict:
194+
else:
195195
assert all(key in ["name", "authors"] for key in result.keys())
196196

197197

0 commit comments

Comments
 (0)