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 bbc813e commit 92532abCopy full SHA for 92532ab
src/main/java/io/qdrant/client/QdrantClient.java
@@ -1212,6 +1212,16 @@ public ListenableFuture<UpdateResult> updateVectorsAsync(
1212
return updateVectorsAsync(requestBuilder.build(), timeout);
1213
}
1214
1215
+ /**
1216
+ * Update named vectors for point.
1217
+ *
1218
+ * @param request The update point vectors request
1219
+ * @return a new instance of {@link ListenableFuture}
1220
+ */
1221
+ public ListenableFuture<UpdateResult> updateVectorsAsync(UpdatePointVectors request) {
1222
+ return updateVectorsAsync(request, null);
1223
+ }
1224
+
1225
/**
1226
* Update named vectors for point.
1227
*
0 commit comments