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

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

Properties

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

Generated using TypeDoc