Skip to main content
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. Open In Colab

Before you begin

To run this notebook, you will need to do the following:

🦜🔗 Library installation

Install the integration library, langchain-google-alloydb-pg, and the library for the embedding service, langchain-google-vertexai.
Colab only: Uncomment the following cell to restart the kernel or use the button to restart the kernel. For Vertex AI Workbench you can restart the terminal using the button on top.

🔐 Authentication

Authenticate to Google Cloud as the IAM user logged into this notebook in order to access your Google Cloud Project.

☁ 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:

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 a AlloyDBEngine 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:
  1. project_id : Project ID of the Google Cloud Project where the AlloyDB instance is located.
  2. region : Region where the AlloyDB instance is located.
  3. cluster: The name of the AlloyDB cluster.
  4. instance : The name of the AlloyDB instance.
  5. database : The name of the database to connect to on the AlloyDB instance.
By default, IAM database authentication will be used as the method of database authentication. This library uses the IAM principal belonging to the Application Default Credentials (ADC) sourced from the environment. Optionally, built-in database authentication using a username and password to access the AlloyDB database can also be used. Just provide the optional user and password arguments to AlloyDBEngine.from_instance():
  • user : Database user to use for built-in database authentication and login
  • password : Database password to use for built-in database authentication and login.
Note: This tutorial demonstrates the async interface. All async methods have corresponding sync methods.

Initialize a table

The AlloyDBVectorStore 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 use VertexAIEmbeddings. We recommend setting the embedding model’s version for production, learn more about the Text embeddings models.

Initialize a default AlloyDBVectorStore

Add texts

Delete texts

Search for documents

Search for documents by vector

Add an index

Speed up vector search queries by applying a vector index. Learn more about vector indexes.

Re-index

Remove an index

Create a custom vector store

A Vector Store can take advantage of relational data to filter similarity searches. Create a table with custom metadata columns.

Search for documents with metadata filter