File tree 1 file changed +8
-7
lines changed
1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change
1
+ import { Document } from "@langchain/core/documents" ;
1
2
import type { EmbeddingsInterface } from "@langchain/core/embeddings" ;
2
3
import { VectorStore } from "@langchain/core/vectorstores" ;
3
- import { Document } from "@langchain/core/documents" ;
4
4
5
5
const IdColumnSymbol = Symbol ( "id" ) ;
6
6
const ContentColumnSymbol = Symbol ( "content" ) ;
@@ -306,12 +306,13 @@ export class PrismaVectorStore<
306
306
const vectorColumnRaw = this . Prisma . raw ( `"${ this . vectorColumnName } "` ) ;
307
307
308
308
await this . db . $transaction (
309
- vectors . map (
310
- ( vector , idx ) => this . db . $executeRaw `
311
- UPDATE ${ tableNameRaw }
312
- SET ${ vectorColumnRaw } = ${ `[${ vector . join ( "," ) } ]` } ::vector
313
- WHERE ${ idColumnRaw } = ${ documents [ idx ] . metadata [ this . idColumn ] }
314
- `
309
+ vectors . map ( ( vector , idx ) =>
310
+ this . db . $executeRaw (
311
+ this . Prisma . sql `UPDATE ${ tableNameRaw }
312
+ SET ${ vectorColumnRaw } = ${ `[${ vector . join ( "," ) } ]` } ::vector
313
+ WHERE ${ idColumnRaw } = ${ documents [ idx ] . metadata [ this . idColumn ] }
314
+ `
315
+ )
315
316
)
316
317
) ;
317
318
}
You can’t perform that action at this time.
0 commit comments