renamed `google_vertex_ai_vector_search` notebook (#13484)

The `integrations/vectorstores/matchingengine.ipynb` example has the
"Google Vertex AI Vector Search" title. This place this Title in the
wrong order in the ToC (it is sorted by the file name).
- Renamed `integrations/vectorstores/matchingengine.ipynb` into
`integrations/vectorstores/google_vertex_ai_vector_search.ipynb`.
- Updated a correspondent comment in docstring
- Rerouted old URL to a new URL

---------

Co-authored-by: Erick Friis <erick@langchain.dev>
pull/14000/head
Leonid Ganeline 7 months ago committed by GitHub
parent f5326cfb4e
commit 52eee458bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -504,6 +504,10 @@
"source": "/docs/integrations/vectorstores/async_faiss",
"destination": "/docs/integrations/vectorstores/faiss_async"
},
{
"source": "/docs/integrations/vectorstores/matchingengine",
"destination": "/docs/integrations/vectorstores/google_vertex_ai_vector_search"
},
{
"source": "/docs/integrations/cerebriumai",
"destination": "/docs/integrations/providers/cerebriumai"

@ -26,7 +26,7 @@ logger = logging.getLogger()
class MatchingEngine(VectorStore):
"""`Google Vertex AI Matching Engine` vector store.
"""`Google Vertex AI Vector Search` (previously Matching Engine) vector store.
While the embeddings are stored in the Matching Engine, the embedded
documents will be stored in GCS.
@ -34,7 +34,7 @@ class MatchingEngine(VectorStore):
An existing Index and corresponding Endpoint are preconditions for
using this module.
See usage in docs/modules/indexes/vectorstores/examples/matchingengine.ipynb
See usage in docs/integrations/vectorstores/google_vertex_ai_vector_search.ipynb
Note that this implementation is mostly meant for reading if you are
planning to do a real time implementation. While reading is a real time
@ -50,7 +50,8 @@ class MatchingEngine(VectorStore):
gcs_bucket_name: str,
credentials: Optional[Credentials] = None,
):
"""Vertex Matching Engine implementation of the vector store.
"""Google Vertex AI Vector Search (previously Matching Engine)
implementation of the vector store.
While the embeddings are stored in the Matching Engine, the embedded
documents will be stored in GCS.
@ -59,7 +60,7 @@ class MatchingEngine(VectorStore):
using this module.
See usage in
docs/modules/indexes/vectorstores/examples/matchingengine.ipynb.
docs/integrations/vectorstores/google_vertex_ai_vector_search.ipynb.
Note that this implementation is mostly meant for reading if you are
planning to do a real time implementation. While reading is a real time

Loading…
Cancel
Save