From 26108a992375b5eaeebe1e0eecd55da34308882a Mon Sep 17 00:00:00 2001 From: Preston Vasquez Date: Mon, 16 Sep 2024 14:20:56 -0600 Subject: [PATCH 1/4] Add beta notice --- vectorstores/mongovector/doc.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vectorstores/mongovector/doc.go b/vectorstores/mongovector/doc.go index ea3611e8a..28ec01950 100644 --- a/vectorstores/mongovector/doc.go +++ b/vectorstores/mongovector/doc.go @@ -1,5 +1,7 @@ // Package mongovector implements a vector store using MongoDB as the backend. // +// Notice: this packge uses the 2.0.0-beta release of the MongoDB Go Driver. +// // The mongovector package provides a way to store and retrieve document embeddings // using MongoDB's vector search capabilities. It implements the VectorStore // interface from the vectorstores package, allowing it to be used interchangeably From 9d4a059678c4d93f650df581ee08916924ce7156 Mon Sep 17 00:00:00 2001 From: Preston Vasquez Date: Mon, 16 Sep 2024 14:29:09 -0600 Subject: [PATCH 2/4] Fix typo --- vectorstores/mongovector/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vectorstores/mongovector/doc.go b/vectorstores/mongovector/doc.go index 28ec01950..b2490da92 100644 --- a/vectorstores/mongovector/doc.go +++ b/vectorstores/mongovector/doc.go @@ -1,6 +1,6 @@ // Package mongovector implements a vector store using MongoDB as the backend. // -// Notice: this packge uses the 2.0.0-beta release of the MongoDB Go Driver. +// Notice: this package uses the 2.0.0-beta release of the MongoDB Go Driver. // // The mongovector package provides a way to store and retrieve document embeddings // using MongoDB's vector search capabilities. It implements the VectorStore From 9b0687986a4acc783dfb9094cde3ee3c5ee42e59 Mon Sep 17 00:00:00 2001 From: Preston Vasquez Date: Mon, 16 Sep 2024 14:48:44 -0600 Subject: [PATCH 3/4] prepend 1 to beta --- vectorstores/mongovector/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vectorstores/mongovector/doc.go b/vectorstores/mongovector/doc.go index b2490da92..4d39b404b 100644 --- a/vectorstores/mongovector/doc.go +++ b/vectorstores/mongovector/doc.go @@ -1,6 +1,6 @@ // Package mongovector implements a vector store using MongoDB as the backend. // -// Notice: this package uses the 2.0.0-beta release of the MongoDB Go Driver. +// Notice: this package uses the 2.0.0-beta1 release of the MongoDB Go Driver. // // The mongovector package provides a way to store and retrieve document embeddings // using MongoDB's vector search capabilities. It implements the VectorStore From 8487afdefcc420b8fa0265fd877bd689a69d9554 Mon Sep 17 00:00:00 2001 From: Preston Vasquez Date: Mon, 23 Sep 2024 15:00:39 -0600 Subject: [PATCH 4/4] Update vectorstores/mongovector/doc.go Co-authored-by: Julia Tazin --- vectorstores/mongovector/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vectorstores/mongovector/doc.go b/vectorstores/mongovector/doc.go index 4d39b404b..391c0e7f1 100644 --- a/vectorstores/mongovector/doc.go +++ b/vectorstores/mongovector/doc.go @@ -1,6 +1,6 @@ // Package mongovector implements a vector store using MongoDB as the backend. // -// Notice: this package uses the 2.0.0-beta1 release of the MongoDB Go Driver. +// Notice: this package uses a beta release of the MongoDB Go Driver 2.0.0. // // The mongovector package provides a way to store and retrieve document embeddings // using MongoDB's vector search capabilities. It implements the VectorStore