Cloud SQL is a fully managed relational database service that offers high performance, seamless integration, and impressive scalability. It offers PostgreSQL, MySQL, and SQL Server database engines. Extend your database application to build AI-powered experiences leveraging Cloud SQL’s LangChain integrations.This notebook goes over how to use
Cloud SQL for MySQL
to store vector embeddings with the MySQLVectorStore
class.
Learn more about the package on GitHub.
langchain-google-cloud-sql-mysql
, and the library for the embedding service, langchain-google-vertexai
.
gcloud config list
.gcloud projects list
.MySQLEngine
object. The MySQLEngine
configures a connection pool to your Cloud SQL database, enabling successful connections from your application and following industry best practices.
To create a MySQLEngine
using MySQLEngine.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 MySQLEngine.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.MySQLVectorStore
class requires a database table. The MySQLEngine
class has a helper method init_vectorstore_table()
that can be used to create a table with the proper schema for you.
VertexAIEmbeddings
.
We recommend pinning the embedding model’s version for production, learn more about the Text embeddings models.
MySQLVectorStore
class you need to provide only 3 things:
engine
- An instance of a MySQLEngine
engine.embedding_service
- An instance of a LangChain embedding model.table_name
: The name of the table within the Cloud SQL database to use as the vector store.similarity_search_by_vector
which accepts an embedding vector as a parameter instead of a string.
MySQLVectorStore
instance with custom metadata columns.
filter
argument.