Skip to content

Commit afc8c24

Browse files
authored
Remove unneeded deps (#19)
* remove unneeded dependencies langchain-openai is not a direct dependency, and is only needed when running an OpenAI compatible model with data science service deployment oracle-ads is also only needed when using Data Science deployment. These are optional requirements * loosen dependencies so switching library from langchain-community is more seamless. * loosen langchain version requirements * lowest version needed for ToolMessage model
1 parent 72def95 commit afc8c24

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

libs/oci/pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "langchain-oci"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
description = "An integration package connecting OCI and LangChain"
55
authors = []
66
readme = "README.md"
@@ -12,12 +12,11 @@ license = "UPL"
1212

1313
[tool.poetry.dependencies]
1414
python = ">=3.9,<4.0"
15-
langchain-core = ">=0.3.15,<0.4"
16-
langchain-openai = ">=0.3.9"
17-
oci = ">=2.155.1"
18-
oracle-ads = ">=2.13.16"
15+
langchain-core = ">=0.3.20,<1.0.0"
16+
langchain = ">=0.3.20,<1.0.0"
17+
oci = ">=2.144.0"
1918
pydantic = ">=2,<3"
20-
aiohttp = ">=3.12.14"
19+
# aiohttp = ">=3.12.14"
2120

2221
[tool.poetry.group.test]
2322
optional = true

0 commit comments

Comments
 (0)