Skip to content

Commit 2090f85

Browse files
authored
core: release 0.3.68 (#31848)
Also add `search_result` to recognized tool message block types.
1 parent 572020c commit 2090f85

File tree

4 files changed

+1615
-1614
lines changed

4 files changed

+1615
-1614
lines changed

β€Žlibs/core/langchain_core/tools/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
from collections.abc import Sequence
7575

7676
FILTERED_ARGS = ("run_manager", "callbacks")
77-
TOOL_MESSAGE_BLOCK_TYPES = ("text", "image_url", "image", "json")
77+
TOOL_MESSAGE_BLOCK_TYPES = ("text", "image_url", "image", "json", "search_result")
7878

7979

8080
class SchemaAnnotationError(TypeError):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""langchain-core version information and utilities."""
22

3-
VERSION = "0.3.67"
3+
VERSION = "0.3.68"

β€Žlibs/core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies = [
1616
"pydantic>=2.7.4",
1717
]
1818
name = "langchain-core"
19-
version = "0.3.67"
19+
version = "0.3.68"
2020
description = "Building applications with LLMs through composability"
2121
readme = "README.md"
2222

0 commit comments

Comments
Β (0)