qdrant,nomic[minor]: bump core deps (#27849)

This commit is contained in:
Bagatur 2024-11-04 12:19:50 -08:00 committed by GitHub
parent 4e5cc84d40
commit dfa83531ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 1342 additions and 1240 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-nomic"
version = "0.1.3"
version = "0.1.4"
description = "An integration package connecting Nomic and LangChain"
authors = []
readme = "README.md"
@ -13,7 +13,7 @@ license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
langchain-core = ">=0.2.40,<0.4"
langchain-core = ">=0.2.43,<0.4.0,!=0.3.0,!=0.3.1,!=0.3.2,!=0.3.3,!=0.3.4,!=0.3.5,!=0.3.6,!=0.3.7,!=0.3.8,!=0.3.9,!=0.3.10,!=0.3.11,!=0.3.12,!=0.3.13,!=0.3.14"
nomic = "^3.1.2"
pillow = "^10.3.0"

View File

@ -2168,7 +2168,7 @@ class Qdrant(VectorStore):
points = [
models.PointStruct(
id=point_id,
vector=vector
vector=vector # type: ignore[arg-type]
if self.vector_name is None
else {self.vector_name: vector},
payload=payload,
@ -2208,7 +2208,7 @@ class Qdrant(VectorStore):
points = [
models.PointStruct(
id=point_id,
vector=vector
vector=vector # type: ignore[arg-type]
if self.vector_name is None
else {self.vector_name: vector},
payload=payload,

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "langchain-qdrant"
version = "0.1.4"
version = "0.2.0"
description = "An integration package connecting Qdrant and LangChain"
authors = []
readme = "README.md"
@ -22,17 +22,12 @@ disallow_untyped_defs = true
"Release Notes" = "https://github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain-qdrant%3D%3D0%22&expanded=true"
[tool.poetry.dependencies]
python = ">=3.8.1,<4"
python = ">=3.9,<4"
qdrant-client = "^1.10.1"
fastembed = { version = "^0.3.3", python = ">=3.9,<3.13", optional = true }
pydantic = "^2.7.4"
[[tool.poetry.dependencies.langchain-core]]
version = ">=0.1.52,<0.4"
python = ">=3.9"
langchain-core = ">=0.2.43,<0.4.0,!=0.3.0,!=0.3.1,!=0.3.2,!=0.3.3,!=0.3.4,!=0.3.5,!=0.3.6,!=0.3.7,!=0.3.8,!=0.3.9,!=0.3.10,!=0.3.11,!=0.3.12,!=0.3.13,!=0.3.14"
[[tool.poetry.dependencies.langchain-core]]
version = ">=0.1.52,<0.3"
python = "<3.9"
[tool.poetry.extras]
fastembed = ["fastembed"]