Interface that defines the arguments required to create a TypeORMVectorStore instance. It includes Postgres connection options, table name, filter, and verbosity level.

interface TypeORMVectorStoreArgs {
    filter?: Metadata;
    postgresConnectionOptions: DataSourceOptions;
    tableName?: string;
    verbose?: boolean;
}

Properties

filter?: Metadata
postgresConnectionOptions: DataSourceOptions
tableName?: string
verbose?: boolean