We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fd3b9c commit b196d53Copy full SHA for b196d53
weaviate/collections/batch/grpc_batch_objects.py
@@ -57,7 +57,7 @@ def pack_vector(vector: Any) -> bytes:
57
collection=obj.collection,
58
vector_bytes=(
59
pack_vector(obj.vector)
60
- if obj.vector is not None
+ if obj.vector is not None and not isinstance(obj.vector, dict)
61
else None
62
),
63
uuid=str(obj.uuid) if obj.uuid is not None else str(uuid_package.uuid4()),
0 commit comments