mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-17 15:35:14 +00:00
qdrant,nomic[minor]: bump core deps (#27849)
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user