mirror of
https://github.com/hwchase17/langchain
synced 2024-10-29 17:07:25 +00:00
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
|
||
|
```
|
||
|
|