mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
e1f4f9ac3e
Added missed pages for `integrations/providers` from `vectorstores`. Updated several `vectorstores` notebooks.
26 lines
705 B
Plaintext
26 lines
705 B
Plaintext
# Google Vertex AI MatchingEngine
|
|
|
|
> [Google Vertex AI Matching Engine](https://cloud.google.com/vertex-ai/docs/matching-engine/overview) provides
|
|
> the industry's leading high-scale low latency vector database. These vector databases are commonly
|
|
> referred to as vector similarity-matching or an approximate nearest neighbor (ANN) service.
|
|
|
|
## Installation and Setup
|
|
|
|
We need to install several python packages.
|
|
|
|
```bash
|
|
pip install tensorflow \
|
|
google-cloud-aiplatform \
|
|
tensorflow-hub \
|
|
tensorflow-text
|
|
```
|
|
|
|
## Vector Store
|
|
|
|
See a [usage example](/docs/integrations/vectorstores/matchingengine).
|
|
|
|
```python
|
|
from langchain.vectorstores import MatchingEngine
|
|
```
|
|
|