Cloud SQL for PostgreSQL is a fully-managed database service that helps you set up, maintain, manage, and administer your PostgreSQL relational databases on Google Cloud Platform. Extend your database application to build AI-powered experiences leveraging Cloud SQL for PostgreSQL’s LangChain integrations.This notebook goes over how to use
Cloud SQL for PostgreSQL
to load Documents with the PostgresLoader
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 Cloud SQL Admin API.
- Create a Cloud SQL for PostgreSQL instance.
- Create a Cloud SQL for PostgreSQL database.
- Add a User to the database.
🦜🔗 Library Installation
Install the integration library,langchain_google_cloud_sql_pg
.
🔐 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 Cloud SQL database values
Find your database variables, in the Cloud SQL Instances page.Cloud SQL Engine
One of the requirements and arguments to establish PostgreSQL as a document loader is aPostgresEngine
object. The PostgresEngine
configures a connection pool to your Cloud SQL for PostgreSQL database, enabling successful connections from your application and following industry best practices.
To create a PostgresEngine
using PostgresEngine.from_instance()
you need to provide only 4 things:
project_id
: Project ID of the Google Cloud Project where the Cloud SQL instance is located.region
: Region where the Cloud SQL instance is located.instance
: The name of the Cloud SQL instance.database
: The name of the database to connect to on the Cloud SQL instance.
user
and password
arguments to PostgresEngine.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.