fix: openai, anthropic (v1) fix core lower bound (#32724)

This commit is contained in:
ccurme
2025-08-27 15:36:10 -03:00
committed by GitHub
parent 9b576440ed
commit ddde1eff68
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"anthropic<1,>=0.64.0",
"langchain-core<2.0.0,>=1.0.0",
"langchain-core<2.0.0,>=1.0.0a1",
"pydantic<3.0.0,>=2.7.4",
]
name = "langchain-anthropic"

View File

@@ -7,7 +7,7 @@ authors = []
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"langchain-core<2.0.0,>=1.0.0",
"langchain-core<2.0.0,>=1.0.0a1",
"openai<2.0.0,>=1.99.9",
"tiktoken<1,>=0.7",
]