mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-24 12:01:54 +00:00
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>
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user