core: release 0.3.68 (#31848)

Also add `search_result` to recognized tool message block types.
This commit is contained in:
ccurme 2025-07-03 12:36:25 -04:00 committed by GitHub
parent 572020c4d8
commit 2090f85789
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 1596 additions and 1595 deletions

View File

@ -74,7 +74,7 @@ if TYPE_CHECKING:
from collections.abc import Sequence from collections.abc import Sequence
FILTERED_ARGS = ("run_manager", "callbacks") FILTERED_ARGS = ("run_manager", "callbacks")
TOOL_MESSAGE_BLOCK_TYPES = ("text", "image_url", "image", "json") TOOL_MESSAGE_BLOCK_TYPES = ("text", "image_url", "image", "json", "search_result")
class SchemaAnnotationError(TypeError): class SchemaAnnotationError(TypeError):

View File

@ -1,3 +1,3 @@
"""langchain-core version information and utilities.""" """langchain-core version information and utilities."""
VERSION = "0.3.67" VERSION = "0.3.68"

View File

@ -16,7 +16,7 @@ dependencies = [
"pydantic>=2.7.4", "pydantic>=2.7.4",
] ]
name = "langchain-core" name = "langchain-core"
version = "0.3.67" version = "0.3.68"
description = "Building applications with LLMs through composability" description = "Building applications with LLMs through composability"
readme = "README.md" readme = "README.md"

File diff suppressed because it is too large Load Diff