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 d3f2a8f commit 8fa688fCopy full SHA for 8fa688f
spring-ai-docs/src/main/antora/modules/ROOT/pages/api/vectordbs/qdrant.adoc
@@ -90,7 +90,7 @@ List <Document> documents = List.of(
90
new Document("You walk forward facing the past and you turn back toward the future.", Map.of("meta2", "meta2")));
91
92
// Add the documents to Qdrant
93
-vectorStore.add(List.of(document));
+vectorStore.add(documents);
94
95
// Retrieve documents similar to a query
96
List<Document> results = vectorStore.similaritySearch(SearchRequest.query("Spring").withTopK(5));
0 commit comments