Cloud SQL shared connection pool

Setup: Install @langchain/google-cloud-sql-pg

Instantiate
import { Column, PostgresEngine, PostgresEngineArgs } from "@langchain/google-cloud-sql-pg";

const pgArgs: PostgresEngineArgs = {
user: "db-user",
password: "password"
}

const engine: PostgresEngine = await PostgresEngine.fromInstance(
"project-id",
"region",
"instance-name",
"database-name",
pgArgs
);

Constructors

Properties

pool: Knex<any, any[]>
connector: Connector

Methods

  • Create a Cloud SQL table to store chat history.

    Parameters

    • tableName: string

      Table name to store chat history

    • schemaName: string = "public"

      Schema name to store chat history table

    Returns Promise<void>

  • Create a table for saving of vectors to be used with PostgresVectorStore.

    Parameters

    • tableName: string

      Postgres database table name. Parameter is not escaped. Do not use with end user input.

    • vectorSize: number

      Vector size for the embedding model to be used.

    • __namedParameters: VectorStoreTableArgs = {}

    Returns Promise<void>

  • Create a PostgresEngine instance from arguments.

    Parameters

    • url: string | StaticConnectionConfig

      URL use to connect to a database

    • OptionalpoolConfig: PoolConfig

      Optional - Configuration pool to use in the Knex configuration

    Returns Promise<PostgresEngine>

    PostgresEngine instance