-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathbase.ts
299 lines (266 loc) Β· 8.44 KB
/
base.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
299
import { Embeddings } from "../embeddings/base.js";
import { Document } from "../document.js";
import { BaseRetriever, BaseRetrieverInput } from "../schema/retriever.js";
import { Serializable } from "../load/serializable.js";
import {
CallbackManagerForRetrieverRun,
Callbacks,
} from "../callbacks/manager.js";
/**
* Type for options when adding a document to the VectorStore.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
type AddDocumentOptions = Record<string, any>;
/**
* Type for options when performing a maximal marginal relevance search.
*/
export type MaxMarginalRelevanceSearchOptions<FilterType> = {
k: number;
fetchK?: number;
lambda?: number;
filter?: FilterType;
};
/**
* Type for options when performing a maximal marginal relevance search
* with the VectorStoreRetriever.
*/
export type VectorStoreRetrieverMMRSearchKwargs = {
fetchK?: number;
lambda?: number;
};
/**
* Type for input when creating a VectorStoreRetriever instance.
*/
export type VectorStoreRetrieverInput<V extends VectorStore> =
BaseRetrieverInput &
(
| {
vectorStore: V;
k?: number;
filter?: V["FilterType"];
searchType?: "similarity";
}
| {
vectorStore: V;
k?: number;
filter?: V["FilterType"];
searchType: "mmr";
searchKwargs?: VectorStoreRetrieverMMRSearchKwargs;
}
);
/**
* Class for performing document retrieval from a VectorStore. Can perform
* similarity search or maximal marginal relevance search.
*/
export class VectorStoreRetriever<
V extends VectorStore = VectorStore
> extends BaseRetriever {
static lc_name() {
return "VectorStoreRetriever";
}
get lc_namespace() {
return ["langchain", "retrievers", "base"];
}
vectorStore: V;
k = 4;
searchType = "similarity";
searchKwargs?: VectorStoreRetrieverMMRSearchKwargs;
filter?: V["FilterType"];
_vectorstoreType(): string {
return this.vectorStore._vectorstoreType();
}
constructor(fields: VectorStoreRetrieverInput<V>) {
super(fields);
this.vectorStore = fields.vectorStore;
this.k = fields.k ?? this.k;
this.searchType = fields.searchType ?? this.searchType;
this.filter = fields.filter;
if (fields.searchType === "mmr") {
this.searchKwargs = fields.searchKwargs;
}
}
async _getRelevantDocuments(
query: string,
runManager?: CallbackManagerForRetrieverRun
): Promise<Document[]> {
if (this.searchType === "mmr") {
if (typeof this.vectorStore.maxMarginalRelevanceSearch !== "function") {
throw new Error(
`The vector store backing this retriever, ${this._vectorstoreType()} does not support max marginal relevance search.`
);
}
return this.vectorStore.maxMarginalRelevanceSearch(
query,
{
k: this.k,
filter: this.filter,
...this.searchKwargs,
},
runManager?.getChild("vectorstore")
);
}
return this.vectorStore.similaritySearch(
query,
this.k,
this.filter,
runManager?.getChild("vectorstore")
);
}
async addDocuments(
documents: Document[],
options?: AddDocumentOptions
): Promise<string[] | void> {
return this.vectorStore.addDocuments(documents, options);
}
}
/**
* Abstract class representing a store of vectors. Provides methods for
* adding vectors and documents, deleting from the store, and searching
* the store.
*/
export abstract class VectorStore extends Serializable {
declare FilterType: object | string;
lc_namespace = ["langchain", "vectorstores", this._vectorstoreType()];
embeddings: Embeddings;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
constructor(embeddings: Embeddings, dbConfig: Record<string, any>) {
super(dbConfig);
this.embeddings = embeddings;
}
abstract _vectorstoreType(): string;
abstract addVectors(
vectors: number[][],
documents: Document[],
options?: AddDocumentOptions
): Promise<string[] | void>;
abstract addDocuments(
documents: Document[],
options?: AddDocumentOptions
): Promise<string[] | void>;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
async delete(_params?: Record<string, any>): Promise<void> {
throw new Error("Not implemented.");
}
abstract similaritySearchVectorWithScore(
query: number[],
k: number,
filter?: this["FilterType"]
): Promise<[Document, number][]>;
async similaritySearch(
query: string,
k = 4,
filter: this["FilterType"] | undefined = undefined,
_callbacks: Callbacks | undefined = undefined // implement passing to embedQuery later
): Promise<Document[]> {
const results = await this.similaritySearchVectorWithScore(
await this.embeddings.embedQuery(query),
k,
filter
);
return results.map((result) => result[0]);
}
async similaritySearchWithScore(
query: string,
k = 4,
filter: this["FilterType"] | undefined = undefined,
_callbacks: Callbacks | undefined = undefined // implement passing to embedQuery later
): Promise<[Document, number][]> {
return this.similaritySearchVectorWithScore(
await this.embeddings.embedQuery(query),
k,
filter
);
}
/**
* Return documents selected using the maximal marginal relevance.
* Maximal marginal relevance optimizes for similarity to the query AND diversity
* among selected documents.
*
* @param {string} query - Text to look up documents similar to.
* @param {number} options.k - Number of documents to return.
* @param {number} options.fetchK - Number of documents to fetch before passing to the MMR algorithm.
* @param {number} options.lambda - Number between 0 and 1 that determines the degree of diversity among the results,
* where 0 corresponds to maximum diversity and 1 to minimum diversity.
* @param {this["FilterType"]} options.filter - Optional filter
* @param _callbacks
*
* @returns {Promise<Document[]>} - List of documents selected by maximal marginal relevance.
*/
async maxMarginalRelevanceSearch?(
query: string,
options: MaxMarginalRelevanceSearchOptions<this["FilterType"]>,
_callbacks: Callbacks | undefined // implement passing to embedQuery later
): Promise<Document[]>;
static fromTexts(
_texts: string[],
_metadatas: object[] | object,
_embeddings: Embeddings,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
_dbConfig: Record<string, any>
): Promise<VectorStore> {
throw new Error(
"the Langchain vectorstore implementation you are using forgot to override this, please report a bug"
);
}
static fromDocuments(
_docs: Document[],
_embeddings: Embeddings,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
_dbConfig: Record<string, any>
): Promise<VectorStore> {
throw new Error(
"the Langchain vectorstore implementation you are using forgot to override this, please report a bug"
);
}
asRetriever(
kOrFields?: number | Partial<VectorStoreRetrieverInput<this>>,
filter?: this["FilterType"],
callbacks?: Callbacks,
tags?: string[],
metadata?: Record<string, unknown>,
verbose?: boolean
): VectorStoreRetriever<this> {
if (typeof kOrFields === "number") {
return new VectorStoreRetriever({
vectorStore: this,
k: kOrFields,
filter,
tags: [...(tags ?? []), this._vectorstoreType()],
metadata,
verbose,
callbacks,
});
} else {
const params = {
vectorStore: this,
k: kOrFields?.k,
filter: kOrFields?.filter,
tags: [...(kOrFields?.tags ?? []), this._vectorstoreType()],
metadata: kOrFields?.metadata,
verbose: kOrFields?.verbose,
callbacks: kOrFields?.callbacks,
searchType: kOrFields?.searchType,
};
if (kOrFields?.searchType === "mmr") {
return new VectorStoreRetriever({
...params,
searchKwargs: kOrFields.searchKwargs,
});
}
return new VectorStoreRetriever({ ...params });
}
}
}
/**
* Abstract class extending VectorStore with functionality for saving and
* loading the vector store.
*/
export abstract class SaveableVectorStore extends VectorStore {
abstract save(directory: string): Promise<void>;
static load(
_directory: string,
_embeddings: Embeddings
): Promise<SaveableVectorStore> {
throw new Error("Not implemented");
}
}