core[patch]: release 0.1.10 (#15911)

pull/15926/head
Erick Friis 9 months ago committed by GitHub
parent 80d41a8da3
commit 437cebc955
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,7 +5,7 @@ from typing import Any, Dict, List, Optional
from langchain_core._api import beta
from langchain_core.load.mapping import (
OG_SERIALIZABLE_MAPPING,
_OG_SERIALIZABLE_MAPPING,
OLD_PROMPT_TEMPLATE_FORMATS,
SERIALIZABLE_MAPPING,
)
@ -16,7 +16,7 @@ DEFAULT_NAMESPACES = ["langchain", "langchain_core", "langchain_community"]
ALL_SERIALIZABLE_MAPPINGS = {
**SERIALIZABLE_MAPPING,
**OLD_PROMPT_TEMPLATE_FORMATS,
**OG_SERIALIZABLE_MAPPING,
**_OG_SERIALIZABLE_MAPPING,
}

@ -481,7 +481,7 @@ SERIALIZABLE_MAPPING: Dict[Tuple[str, ...], Tuple[str, ...]] = {
# Needed for backwards compatibility for old versions of LangChain where things
# Were in different place
OG_SERIALIZABLE_MAPPING: Dict[Tuple[str, ...], Tuple[str, ...]] = {
_OG_SERIALIZABLE_MAPPING: Dict[Tuple[str, ...], Tuple[str, ...]] = {
("langchain", "schema", "AIMessage"): (
"langchain_core",
"messages",

@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-core"
version = "0.1.9"
version = "0.1.10"
description = "Building applications with LLMs through composability"
authors = []
license = "MIT"

Loading…
Cancel
Save