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