mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-03 11:47:49 +00:00
core: release 0.3.19 (#28137)
This commit is contained in:
parent
585479e1ff
commit
d3252b7417
12
libs/core/poetry.lock
generated
12
libs/core/poetry.lock
generated
@ -609,13 +609,13 @@ files = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "httpcore"
|
name = "httpcore"
|
||||||
version = "1.0.6"
|
version = "1.0.7"
|
||||||
description = "A minimal low-level HTTP client."
|
description = "A minimal low-level HTTP client."
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.8"
|
python-versions = ">=3.8"
|
||||||
files = [
|
files = [
|
||||||
{file = "httpcore-1.0.6-py3-none-any.whl", hash = "sha256:27b59625743b85577a8c0e10e55b50b5368a4f2cfe8cc7bcfa9cf00829c2682f"},
|
{file = "httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"},
|
||||||
{file = "httpcore-1.0.6.tar.gz", hash = "sha256:73f6dbd6eb8c21bbf7ef8efad555481853f5f6acdeaff1edb0694289269ee17f"},
|
{file = "httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c"},
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
@ -1225,13 +1225,13 @@ url = "../text-splitters"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "langsmith"
|
name = "langsmith"
|
||||||
version = "0.1.142"
|
version = "0.1.143"
|
||||||
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
|
description = "Client library to connect to the LangSmith LLM Tracing and Evaluation Platform."
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = "<4.0,>=3.8.1"
|
python-versions = "<4.0,>=3.8.1"
|
||||||
files = [
|
files = [
|
||||||
{file = "langsmith-0.1.142-py3-none-any.whl", hash = "sha256:f639ca23c9a0bb77af5fb881679b2f66ff1f21f19d0bebf4e51375e7585a8b38"},
|
{file = "langsmith-0.1.143-py3-none-any.whl", hash = "sha256:ba0d827269e9b03a90fababe41fa3e4e3f833300b95add10184f7e67167dde6f"},
|
||||||
{file = "langsmith-0.1.142.tar.gz", hash = "sha256:f8a84d100f3052233ff0a1d66ae14c5dfc20b7e41a1601de011384f16ee6cb82"},
|
{file = "langsmith-0.1.143.tar.gz", hash = "sha256:4c5159e5cd84b3f8499433009e72d2076dd2daf6c044ac8a3611b30d0d0161c5"},
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.dependencies]
|
[package.dependencies]
|
||||||
|
@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "langchain-core"
|
name = "langchain-core"
|
||||||
version = "0.3.18"
|
version = "0.3.19"
|
||||||
description = "Building applications with LLMs through composability"
|
description = "Building applications with LLMs through composability"
|
||||||
authors = []
|
authors = []
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@ -85,6 +85,7 @@ classmethod-decorators = [ "classmethod", "langchain_core.utils.pydantic.pre_ini
|
|||||||
ruff = "^0.5"
|
ruff = "^0.5"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.group.typing.dependencies]
|
[tool.poetry.group.typing.dependencies]
|
||||||
mypy = ">=1.10,<1.11"
|
mypy = ">=1.10,<1.11"
|
||||||
types-pyyaml = "^6.0.12.2"
|
types-pyyaml = "^6.0.12.2"
|
||||||
@ -92,12 +93,14 @@ types-requests = "^2.28.11.5"
|
|||||||
types-jinja2 = "^2.11.9"
|
types-jinja2 = "^2.11.9"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
[tool.poetry.group.dev.dependencies]
|
||||||
jupyter = "^1.0.0"
|
jupyter = "^1.0.0"
|
||||||
setuptools = "^67.6.1"
|
setuptools = "^67.6.1"
|
||||||
grandalf = "^0.8"
|
grandalf = "^0.8"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.group.test.dependencies]
|
[tool.poetry.group.test.dependencies]
|
||||||
pytest = "^8"
|
pytest = "^8"
|
||||||
freezegun = "^1.2.2"
|
freezegun = "^1.2.2"
|
||||||
@ -117,14 +120,17 @@ version = ">=1.26.0,<3"
|
|||||||
python = ">=3.12"
|
python = ">=3.12"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.group.test_integration.dependencies]
|
[tool.poetry.group.test_integration.dependencies]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.group.typing.dependencies.langchain-text-splitters]
|
[tool.poetry.group.typing.dependencies.langchain-text-splitters]
|
||||||
path = "../text-splitters"
|
path = "../text-splitters"
|
||||||
develop = true
|
develop = true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.group.test.dependencies.langchain-standard-tests]
|
[tool.poetry.group.test.dependencies.langchain-standard-tests]
|
||||||
path = "../standard-tests"
|
path = "../standard-tests"
|
||||||
develop = true
|
develop = true
|
||||||
|
Loading…
Reference in New Issue
Block a user