AlloyDB is a fully managed relational database service that offers high performance, seamless integration, and impressive scalability. AlloyDB is 100% compatible with PostgreSQL. Extend your database application to build AI-powered experiences leveraging AlloyDB’s LangChain integrations.This notebook goes over how to use
AlloyDB for PostgreSQL
to store vector embeddings with the AlloyDBVectorStore
class.
Learn more about the package on GitHub.
Before you begin
To run this notebook, you will need to do the following:- Create a Google Cloud Project
- Enable the AlloyDB API
- Create a AlloyDB cluster and instance.
- Create a AlloyDB database.
- Add a User to the database.
🦜🔗 Library Installation
Install the integration library,langchain-google-alloydb-pg
, and the library for the embedding service, langchain-google-vertexai
.
🔐 Authentication
Authenticate to Google Cloud as the IAM user logged into this notebook in order to access your Google Cloud Project.- If you are using Colab to run this notebook, use the cell below and continue.
- If you are using Vertex AI Workbench, check out the setup instructions here.
☁ Set Your Google Cloud Project
Set your Google Cloud project so that you can leverage Google Cloud resources within this notebook. If you don’t know your project ID, try the following:- Run
gcloud config list
. - Run
gcloud projects list
. - See the support page: Locate the project ID.
Basic Usage
Set AlloyDB database values
Find your database values, in the AlloyDB Instances page.AlloyDBEngine Connection Pool
One of the requirements and arguments to establish AlloyDB as a vector store is aAlloyDBEngine
object. The AlloyDBEngine
configures a connection pool to your AlloyDB database, enabling successful connections from your application and following industry best practices.
To create a AlloyDBEngine
using AlloyDBEngine.from_instance()
you need to provide only 5 things:
project_id
: Project ID of the Google Cloud Project where the AlloyDB instance is located.region
: Region where the AlloyDB instance is located.cluster
: The name of the AlloyDB cluster.instance
: The name of the AlloyDB instance.database
: The name of the database to connect to on the AlloyDB instance.
user
and password
arguments to AlloyDBEngine.from_instance()
:
user
: Database user to use for built-in database authentication and loginpassword
: Database password to use for built-in database authentication and login.
Initialize a table
TheAlloyDBVectorStore
class requires a database table. The AlloyDBEngine
engine has a helper method init_vectorstore_table()
that can be used to create a table with the proper schema for you.
Create an embedding class instance
You can use any LangChain embeddings model. You may need to enable Vertex AI API to useVertexAIEmbeddings
. We recommend setting the embedding model’s version for production, learn more about the Text embeddings models.