this.pgVectorStore = new PgVector({
host: this.dbConfig.host,
port: this.dbConfig.port,
database: this.dbConfig.database,
user: this.dbConfig.username,
password: this.dbConfig.password,
schemaName: this.dbConfig.schema,
ssl: this.dbConfig.ssl,
})
await this.pgVectorStore.createIndex({
indexName: 'nlQuery',
dimension: 1536,
})
this.pgVectorStore = new PgVector({
host: this.dbConfig.host,
port: this.dbConfig.port,
database: this.dbConfig.database,
user: this.dbConfig.username,
password: this.dbConfig.password,
schemaName: this.dbConfig.schema,
ssl: this.dbConfig.ssl,
})
await this.pgVectorStore.createIndex({
indexName: 'nlQuery',
dimension: 1536,
})