From b41f9f725393477598b72df50fecd8b4f57b2772 Mon Sep 17 00:00:00 2001 From: Vivek Dinesh Date: Thu, 21 Dec 2023 16:46:22 +0530 Subject: [PATCH] Fix collection.add parameter in getting-started doc. --- docs/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.md b/docs/getting-started.md index c6c3434..8620c58 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -178,7 +178,7 @@ await collection.add({ [1.2, 2.3, 4.5], [6.7, 8.2, 9.2], ], - where: [{ source: "my_source" }, { source: "my_source" }], + metadatas: [{ source: "my_source" }, { source: "my_source" }], documents: ["This is a document", "This is another document"], }); ```