mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-19 13:23:35 +00:00
experimental: release 0.0.62 (#23507)
This commit is contained in:
parent
99ce84ef23
commit
62b16fcc6b
29
libs/experimental/poetry.lock
generated
29
libs/experimental/poetry.lock
generated
@ -1,4 +1,4 @@
|
||||
# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand.
|
||||
# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand.
|
||||
|
||||
[[package]]
|
||||
name = "aiohttp"
|
||||
@ -1461,7 +1461,7 @@ files = [
|
||||
|
||||
[[package]]
|
||||
name = "langchain"
|
||||
version = "0.2.5"
|
||||
version = "0.2.6"
|
||||
description = "Building applications with LLMs through composability"
|
||||
optional = false
|
||||
python-versions = ">=3.8.1,<4.0"
|
||||
@ -1471,7 +1471,7 @@ develop = true
|
||||
[package.dependencies]
|
||||
aiohttp = "^3.8.3"
|
||||
async-timeout = {version = "^4.0.0", markers = "python_version < \"3.11\""}
|
||||
langchain-core = "^0.2.7"
|
||||
langchain-core = "^0.2.10"
|
||||
langchain-text-splitters = "^0.2.0"
|
||||
langsmith = "^0.1.17"
|
||||
numpy = [
|
||||
@ -1482,7 +1482,7 @@ pydantic = ">=1,<3"
|
||||
PyYAML = ">=5.3"
|
||||
requests = "^2"
|
||||
SQLAlchemy = ">=1.4,<3"
|
||||
tenacity = "^8.1.0"
|
||||
tenacity = "^8.1.0,!=8.4.0"
|
||||
|
||||
[package.source]
|
||||
type = "directory"
|
||||
@ -1490,7 +1490,7 @@ url = "../langchain"
|
||||
|
||||
[[package]]
|
||||
name = "langchain-community"
|
||||
version = "0.2.5"
|
||||
version = "0.2.6"
|
||||
description = "Community contributed LangChain integrations."
|
||||
optional = false
|
||||
python-versions = ">=3.8.1,<4.0"
|
||||
@ -1500,8 +1500,8 @@ develop = true
|
||||
[package.dependencies]
|
||||
aiohttp = "^3.8.3"
|
||||
dataclasses-json = ">= 0.5.7, < 0.7"
|
||||
langchain = "^0.2.5"
|
||||
langchain-core = "^0.2.7"
|
||||
langchain = "^0.2.6"
|
||||
langchain-core = "^0.2.10"
|
||||
langsmith = "^0.1.0"
|
||||
numpy = [
|
||||
{version = ">=1,<2", markers = "python_version < \"3.12\""},
|
||||
@ -1510,7 +1510,7 @@ numpy = [
|
||||
PyYAML = ">=5.3"
|
||||
requests = "^2"
|
||||
SQLAlchemy = ">=1.4,<3"
|
||||
tenacity = "^8.1.0"
|
||||
tenacity = "^8.1.0,!=8.4.0"
|
||||
|
||||
[package.source]
|
||||
type = "directory"
|
||||
@ -1518,7 +1518,7 @@ url = "../community"
|
||||
|
||||
[[package]]
|
||||
name = "langchain-core"
|
||||
version = "0.2.7"
|
||||
version = "0.2.10"
|
||||
description = "Building applications with LLMs through composability"
|
||||
optional = false
|
||||
python-versions = ">=3.8.1,<4.0"
|
||||
@ -1529,9 +1529,12 @@ develop = true
|
||||
jsonpatch = "^1.33"
|
||||
langsmith = "^0.1.75"
|
||||
packaging = ">=23.2,<25"
|
||||
pydantic = ">=1,<3"
|
||||
pydantic = [
|
||||
{version = ">=1,<3", markers = "python_full_version < \"3.12.4\""},
|
||||
{version = ">=2.7.4,<3.0.0", markers = "python_full_version >= \"3.12.4\""},
|
||||
]
|
||||
PyYAML = ">=5.3"
|
||||
tenacity = "^8.1.0"
|
||||
tenacity = "^8.1.0,!=8.4.0"
|
||||
|
||||
[package.source]
|
||||
type = "directory"
|
||||
@ -1539,7 +1542,7 @@ url = "../core"
|
||||
|
||||
[[package]]
|
||||
name = "langchain-openai"
|
||||
version = "0.1.8"
|
||||
version = "0.1.10"
|
||||
description = "An integration package connecting OpenAI and LangChain"
|
||||
optional = false
|
||||
python-versions = ">=3.8.1,<4.0"
|
||||
@ -3703,4 +3706,4 @@ test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools",
|
||||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = ">=3.8.1,<4.0"
|
||||
content-hash = "ef427f77e729dd50afdcf2599be9401cbc35ddf1c2221ff2e333c29a09481543"
|
||||
content-hash = "d1eb55e31ab49548767b78f52c55219b7f9ca20c86650d5d5c599c187ccbc078"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "langchain-experimental"
|
||||
version = "0.0.61"
|
||||
version = "0.0.62"
|
||||
description = "Building applications with LLMs through composability"
|
||||
authors = []
|
||||
license = "MIT"
|
||||
@ -10,8 +10,8 @@ repository = "https://github.com/langchain-ai/langchain"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.8.1,<4.0"
|
||||
langchain-core = "^0.2.7"
|
||||
langchain-community = "^0.2.5"
|
||||
langchain-core = "^0.2.10"
|
||||
langchain-community = "^0.2.6"
|
||||
|
||||
[tool.poetry.group.lint]
|
||||
optional = true
|
||||
|
Loading…
Reference in New Issue
Block a user