-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathMongoDbEmbeddedContentStore.ts
298 lines (287 loc) · 8.12 KB
/
MongoDbEmbeddedContentStore.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
import { pageIdentity, PersistedPage } from ".";
import { DatabaseConnection } from "../DatabaseConnection";
import { EmbeddedContent, EmbeddedContentStore } from "./EmbeddedContent";
import { FindNearestNeighborsOptions, WithScore } from "../VectorStore";
import {
MakeMongoDbDatabaseConnectionParams,
makeMongoDbDatabaseConnection,
} from "../MongoDbDatabaseConnection";
import { strict as assert } from "assert";
import { MongoServerError } from "mongodb";
export type MakeMongoDbEmbeddedContentStoreParams =
MakeMongoDbDatabaseConnectionParams & {
/**
The name of the collection in the database that stores {@link EmbeddedContent} documents.
@default "embedded_content"
*/
collectionName?: string;
searchIndex: {
/**
Name of the search index to use for nearest-neighbor search.
@default "vector_index"
*/
name?: string;
/**
Embedding field name. Stored in the `EmbeddedContent.embeddings[embeddingName]` field.
*/
embeddingName: string;
/**
Number of dimensions in the embedding field to index.
Only used in index creation.
@default 1536
*/
numDimensions?: number;
/**
Atlas Vector Search filters to apply to the index creation.
Only used in index creation.
@default
```js
[{ type: "filter", path: "sourceName" }]
```
*/
filters?: {
type: "filter";
path: string;
}[];
};
};
export type MongoDbEmbeddedContentStore = EmbeddedContentStore &
DatabaseConnection & {
metadata: {
databaseName: string;
collectionName: string;
embeddingPath: string;
embeddingName: string;
};
init(): Promise<void>;
};
export function makeMongoDbEmbeddedContentStore({
connectionUri,
databaseName,
searchIndex: {
embeddingName,
numDimensions = 1536,
filters = [
{
type: "filter",
path: "sourceName",
},
],
name = "vector_index",
},
collectionName = "embedded_content",
}: MakeMongoDbEmbeddedContentStoreParams): MongoDbEmbeddedContentStore {
const { mongoClient, db, drop, close } = makeMongoDbDatabaseConnection({
connectionUri,
databaseName,
});
const embeddedContentCollection =
db.collection<EmbeddedContent>(collectionName);
const embeddingPath = `embeddings.${embeddingName}`;
return {
drop,
close,
metadata: {
databaseName,
collectionName,
embeddingName,
embeddingPath,
},
async loadEmbeddedContent({ page }) {
return await embeddedContentCollection.find(pageIdentity(page)).toArray();
},
async getPagesFromEmbeddedContent({
dataSources,
chunkAlgoHash,
inverseChunkAlgoHash = false,
}): Promise<PersistedPage[]> {
const pipeline = [
{
$match: {
...(dataSources ? { sourceName: { $in: dataSources } } : undefined),
chunkAlgoHash: inverseChunkAlgoHash
? { $ne: chunkAlgoHash }
: chunkAlgoHash,
},
},
{
$lookup: {
from: "pages",
let: {
url: "$url",
sourceName: "$sourceName",
},
pipeline: [
{
$match: {
$expr: {
$and: [
{
$eq: ["$url", "$$url"],
},
{
$eq: ["$sourceName", "$$sourceName"],
},
],
},
},
},
],
as: "pages",
},
},
{
$project: {
_id: 0,
pages: 1,
},
},
{
$unwind: {
path: "$pages",
},
},
{
$replaceRoot: {
newRoot: "$pages",
},
},
];
return await embeddedContentCollection
.aggregate<PersistedPage>(pipeline)
.toArray();
},
async deleteEmbeddedContent({
page,
dataSources,
inverseDataSources = false,
}) {
const deleteResult = await embeddedContentCollection.deleteMany({
...(page ? pageIdentity(page) : undefined),
...(dataSources
? {
sourceName: {
[inverseDataSources ? "$nin" : "$in"]: dataSources,
},
}
: undefined),
});
if (!deleteResult.acknowledged) {
throw new Error("EmbeddedContent deletion not acknowledged!");
}
},
async updateEmbeddedContent({ page, embeddedContent }) {
assert(embeddedContent.length !== 0);
embeddedContent.forEach((embeddedContent) => {
assert(
embeddedContent.sourceName === page.sourceName &&
embeddedContent.url === page.url,
`EmbeddedContent source/url (${embeddedContent.sourceName} / ${embeddedContent.url}) must match give page source/url (${page.sourceName} / ${page.url})!`
);
});
await mongoClient.withSession(async (session) => {
await session.withTransaction(async () => {
// First delete all the embeddedContent for the given page
const deleteResult = await embeddedContentCollection.deleteMany(
pageIdentity(page),
{ session }
);
if (!deleteResult.acknowledged) {
throw new Error("EmbeddedContent deletion not acknowledged!");
}
// Insert the embedded content for the page
const insertResult = await embeddedContentCollection.insertMany(
[...embeddedContent],
{
session,
}
);
if (!insertResult.acknowledged) {
throw new Error("EmbeddedContent insertion not acknowledged!");
}
const { insertedCount } = insertResult;
if (insertedCount !== embeddedContent.length) {
throw new Error(
`Expected ${embeddedContent.length} inserted, got ${insertedCount}`
);
}
});
});
},
/**
@param vector - The vector to search for nearest neighbors to.
@param options - Options for performing a nearest-neighbor search.
*/
async findNearestNeighbors(vector, options) {
const {
indexName,
path,
k,
minScore,
filter = {},
numCandidates,
}: Partial<FindNearestNeighborsOptions> = {
// Default options
indexName: name,
path: embeddingPath,
k: 3,
minScore: 0,
// User options override
...(options ?? {}),
};
return embeddedContentCollection
.aggregate<WithScore<EmbeddedContent>>([
{
$vectorSearch: {
index: indexName,
queryVector: vector,
path,
limit: k,
numCandidates: numCandidates ?? k * 15,
filter,
},
},
{
$addFields: {
score: {
$meta: "vectorSearchScore",
},
},
},
{ $match: { score: { $gte: minScore } } },
])
.toArray();
},
async init() {
await embeddedContentCollection.createIndex({ sourceName: 1 });
await embeddedContentCollection.createIndex({ url: 1 });
try {
const searchIndex = {
name,
type: "vectorSearch",
definition: {
fields: [
{
numDimensions,
path: embeddingPath,
similarity: "cosine",
type: "vector",
},
...filters,
],
},
};
await embeddedContentCollection.createSearchIndex(searchIndex);
} catch (error: unknown) {
if (error instanceof MongoServerError) {
assert(
error.codeName === "IndexAlreadyExists",
`An unexpected MongoError occurred: ${error.name}`
);
} else {
throw error;
}
}
},
};
}