Skip to content

Commit 4b00f3e

Browse files
fix(community): Update PrismaVectorStore to execute raw SQL with Prisma.sql tagged template (langchain-ai#6889)
Co-authored-by: jacoblee93 <[email protected]>
1 parent a4588a0 commit 4b00f3e

File tree

1 file changed

+8
-7
lines changed
  • libs/langchain-community/src/vectorstores

1 file changed

+8
-7
lines changed

libs/langchain-community/src/vectorstores/prisma.ts

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { Document } from "@langchain/core/documents";
12
import type { EmbeddingsInterface } from "@langchain/core/embeddings";
23
import { VectorStore } from "@langchain/core/vectorstores";
3-
import { Document } from "@langchain/core/documents";
44

55
const IdColumnSymbol = Symbol("id");
66
const ContentColumnSymbol = Symbol("content");
@@ -306,12 +306,13 @@ export class PrismaVectorStore<
306306
const vectorColumnRaw = this.Prisma.raw(`"${this.vectorColumnName}"`);
307307

308308
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+
)
315316
)
316317
);
317318
}

0 commit comments

Comments
 (0)