Google Cloud SQL is a fully managed relational database service that offers high performance, seamless integration, and impressive scalability. It offersThis notebook goes over how to useMySQL
,PostgreSQL
, andSQL Server
database engines. Extend your database application to build AI-powered experiences leveraging Cloud SQL’s LangChain integrations.
Google Cloud SQL for SQL Server
to store chat message history with the MSSQLChatMessageHistory
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 SQL Server instance
- Create a Cloud SQL database
- Create a database user (Optional if you choose to use the
sqlserver
user)
🦜🔗 Library Installation
The integration lives in its ownlangchain-google-cloud-sql-mssql
package, so we need to install it.
🔐 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.
💡 API Enablement
Thelangchain-google-cloud-sql-mssql
package requires that you enable the Cloud SQL Admin API in your Google Cloud Project.
Basic Usage
Set Cloud SQL database values
Find your database values, in the Cloud SQL Instances page.MSSQLEngine Connection Pool
One of the requirements and arguments to establish Cloud SQL as a ChatMessageHistory memory store is aMSSQLEngine
object. The MSSQLEngine
configures a connection pool to your Cloud SQL database, enabling successful connections from your application and following industry best practices.
To create a MSSQLEngine
using MSSQLEngine.from_instance()
you need to provide only 6 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
: Database user to use for built-in database authentication and login.password
: Database password to use for built-in database authentication and login.
Initialize a table
TheMSSQLChatMessageHistory
class requires a database table with a specific schema in order to store the chat message history.
The MSSQLEngine
engine has a helper method init_chat_history_table()
that can be used to create a table with the proper schema for you.
MSSQLChatMessageHistory
To initialize theMSSQLChatMessageHistory
class you need to provide only 3 things:
engine
- An instance of aMSSQLEngine
engine.session_id
- A unique identifier string that specifies an id for the session.table_name
: The name of the table within the Cloud SQL database to store the chat message history.