langchain 0.0.136 → 0.0.138

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/chat_models/minimax.cjs +1 -0
  2. package/chat_models/minimax.d.ts +1 -0
  3. package/chat_models/minimax.js +1 -0
  4. package/dist/callbacks/handlers/tracer.cjs +17 -17
  5. package/dist/callbacks/handlers/tracer.d.ts +1 -1
  6. package/dist/callbacks/handlers/tracer.js +17 -17
  7. package/dist/callbacks/manager.cjs +25 -10
  8. package/dist/callbacks/manager.d.ts +3 -2
  9. package/dist/callbacks/manager.js +25 -10
  10. package/dist/chat_models/minimax.cjs +547 -0
  11. package/dist/chat_models/minimax.d.ts +364 -0
  12. package/dist/chat_models/minimax.js +543 -0
  13. package/dist/chat_models/ollama.cjs +136 -0
  14. package/dist/chat_models/ollama.d.ts +34 -0
  15. package/dist/chat_models/ollama.js +136 -0
  16. package/dist/document_loaders/web/recursive_url.cjs +1 -1
  17. package/dist/document_loaders/web/recursive_url.js +1 -1
  18. package/dist/embeddings/minimax.cjs +152 -0
  19. package/dist/embeddings/minimax.d.ts +104 -0
  20. package/dist/embeddings/minimax.js +148 -0
  21. package/dist/llms/llama_cpp.cjs +132 -0
  22. package/dist/llms/llama_cpp.d.ts +73 -0
  23. package/dist/llms/llama_cpp.js +128 -0
  24. package/dist/llms/ollama.cjs +136 -0
  25. package/dist/llms/ollama.d.ts +34 -0
  26. package/dist/llms/ollama.js +136 -0
  27. package/dist/load/import_constants.cjs +1 -0
  28. package/dist/load/import_constants.js +1 -0
  29. package/dist/load/import_map.cjs +5 -2
  30. package/dist/load/import_map.d.ts +3 -0
  31. package/dist/load/import_map.js +3 -0
  32. package/dist/retrievers/multi_vector.cjs +72 -0
  33. package/dist/retrievers/multi_vector.d.ts +30 -0
  34. package/dist/retrievers/multi_vector.js +68 -0
  35. package/dist/retrievers/parent_document.cjs +1 -0
  36. package/dist/retrievers/parent_document.js +1 -0
  37. package/dist/schema/retriever.cjs +1 -4
  38. package/dist/schema/retriever.d.ts +2 -5
  39. package/dist/schema/retriever.js +1 -4
  40. package/dist/util/ollama.d.ts +34 -0
  41. package/dist/vectorstores/redis.cjs +17 -2
  42. package/dist/vectorstores/redis.d.ts +10 -1
  43. package/dist/vectorstores/redis.js +17 -2
  44. package/dist/vectorstores/zep.cjs +2 -1
  45. package/dist/vectorstores/zep.js +3 -2
  46. package/embeddings/minimax.cjs +1 -0
  47. package/embeddings/minimax.d.ts +1 -0
  48. package/embeddings/minimax.js +1 -0
  49. package/llms/llama_cpp.cjs +1 -0
  50. package/llms/llama_cpp.d.ts +1 -0
  51. package/llms/llama_cpp.js +1 -0
  52. package/package.json +40 -3
  53. package/retrievers/multi_vector.cjs +1 -0
  54. package/retrievers/multi_vector.d.ts +1 -0
  55. package/retrievers/multi_vector.js +1 -0
@@ -0,0 +1,30 @@
1
+ import { BaseStore } from "../schema/storage.js";
2
+ import { Document } from "../document.js";
3
+ import { BaseRetriever, BaseRetrieverInput } from "../schema/retriever.js";
4
+ import { VectorStore } from "../vectorstores/base.js";
5
+ /**
6
+ * Arguments for the MultiVectorRetriever class.
7
+ */
8
+ export interface MultiVectorRetrieverInput extends BaseRetrieverInput {
9
+ vectorstore: VectorStore;
10
+ docstore: BaseStore<string, Document>;
11
+ idKey?: string;
12
+ childK?: number;
13
+ parentK?: number;
14
+ }
15
+ /**
16
+ * A retriever that retrieves documents from a vector store and a document
17
+ * store. It uses the vector store to find relevant documents based on a
18
+ * query, and then retrieves the full documents from the document store.
19
+ */
20
+ export declare class MultiVectorRetriever extends BaseRetriever {
21
+ static lc_name(): string;
22
+ lc_namespace: string[];
23
+ vectorstore: VectorStore;
24
+ docstore: BaseStore<string, Document>;
25
+ protected idKey: string;
26
+ protected childK?: number;
27
+ protected parentK?: number;
28
+ constructor(args: MultiVectorRetrieverInput);
29
+ _getRelevantDocuments(query: string): Promise<Document[]>;
30
+ }
@@ -0,0 +1,68 @@
1
+ import { BaseRetriever } from "../schema/retriever.js";
2
+ /**
3
+ * A retriever that retrieves documents from a vector store and a document
4
+ * store. It uses the vector store to find relevant documents based on a
5
+ * query, and then retrieves the full documents from the document store.
6
+ */
7
+ export class MultiVectorRetriever extends BaseRetriever {
8
+ static lc_name() {
9
+ return "MultiVectorRetriever";
10
+ }
11
+ constructor(args) {
12
+ super(args);
13
+ Object.defineProperty(this, "lc_namespace", {
14
+ enumerable: true,
15
+ configurable: true,
16
+ writable: true,
17
+ value: ["langchain", "retrievers", "multi_vector"]
18
+ });
19
+ Object.defineProperty(this, "vectorstore", {
20
+ enumerable: true,
21
+ configurable: true,
22
+ writable: true,
23
+ value: void 0
24
+ });
25
+ Object.defineProperty(this, "docstore", {
26
+ enumerable: true,
27
+ configurable: true,
28
+ writable: true,
29
+ value: void 0
30
+ });
31
+ Object.defineProperty(this, "idKey", {
32
+ enumerable: true,
33
+ configurable: true,
34
+ writable: true,
35
+ value: void 0
36
+ });
37
+ Object.defineProperty(this, "childK", {
38
+ enumerable: true,
39
+ configurable: true,
40
+ writable: true,
41
+ value: void 0
42
+ });
43
+ Object.defineProperty(this, "parentK", {
44
+ enumerable: true,
45
+ configurable: true,
46
+ writable: true,
47
+ value: void 0
48
+ });
49
+ this.vectorstore = args.vectorstore;
50
+ this.docstore = args.docstore;
51
+ this.idKey = args.idKey ?? "doc_id";
52
+ this.childK = args.childK;
53
+ this.parentK = args.parentK;
54
+ }
55
+ async _getRelevantDocuments(query) {
56
+ const subDocs = await this.vectorstore.similaritySearch(query, this.childK);
57
+ const ids = [];
58
+ for (const doc of subDocs) {
59
+ if (doc.metadata[this.idKey] && !ids.includes(doc.metadata[this.idKey])) {
60
+ ids.push(doc.metadata[this.idKey]);
61
+ }
62
+ }
63
+ const docs = await this.docstore.mget(ids);
64
+ return docs
65
+ .filter((doc) => doc !== undefined)
66
+ .slice(0, this.parentK);
67
+ }
68
+ }
@@ -27,6 +27,7 @@ exports.ParentDocumentRetriever = void 0;
27
27
  const uuid = __importStar(require("uuid"));
28
28
  const retriever_js_1 = require("../schema/retriever.cjs");
29
29
  const document_js_1 = require("../document.cjs");
30
+ // TODO: Change this to subclass MultiVectorRetriever
30
31
  /**
31
32
  * A type of document retriever that splits input documents into smaller chunks
32
33
  * while separately storing and preserving the original documents.
@@ -1,6 +1,7 @@
1
1
  import * as uuid from "uuid";
2
2
  import { BaseRetriever } from "../schema/retriever.js";
3
3
  import { Document } from "../document.js";
4
+ // TODO: Change this to subclass MultiVectorRetriever
4
5
  /**
5
6
  * A type of document retriever that splits input documents into smaller chunks
6
7
  * while separately storing and preserving the original documents.
@@ -6,10 +6,7 @@ const runnable_js_1 = require("./runnable.cjs");
6
6
  /**
7
7
  * Abstract base class for a Document retrieval system. A retrieval system
8
8
  * is defined as something that can take string queries and return the
9
- * most 'relevant' Documents from some source. It extends the `Runnable`
10
- * class, which means it is a unit of work that can be invoked, batched,
11
- * streamed, or transformed. In the context of `BaseRetriever`, it is
12
- * invoked with a string input and returns an array of `Document` objects.
9
+ * most 'relevant' Documents from some source.
13
10
  */
14
11
  class BaseRetriever extends runnable_js_1.Runnable {
15
12
  constructor(fields) {
@@ -2,7 +2,7 @@ import { BaseCallbackConfig, CallbackManagerForRetrieverRun, Callbacks } from ".
2
2
  import { Document } from "../document.js";
3
3
  import { Runnable, RunnableConfig } from "./runnable.js";
4
4
  /**
5
- * Base Index class. All indexes should extend this class.
5
+ * Base Retriever class. All indexes should extend this class.
6
6
  */
7
7
  export interface BaseRetrieverInput {
8
8
  callbacks?: Callbacks;
@@ -13,10 +13,7 @@ export interface BaseRetrieverInput {
13
13
  /**
14
14
  * Abstract base class for a Document retrieval system. A retrieval system
15
15
  * is defined as something that can take string queries and return the
16
- * most 'relevant' Documents from some source. It extends the `Runnable`
17
- * class, which means it is a unit of work that can be invoked, batched,
18
- * streamed, or transformed. In the context of `BaseRetriever`, it is
19
- * invoked with a string input and returns an array of `Document` objects.
16
+ * most 'relevant' Documents from some source.
20
17
  */
21
18
  export declare abstract class BaseRetriever extends Runnable<string, Document[]> {
22
19
  callbacks?: Callbacks;
@@ -3,10 +3,7 @@ import { Runnable } from "./runnable.js";
3
3
  /**
4
4
  * Abstract base class for a Document retrieval system. A retrieval system
5
5
  * is defined as something that can take string queries and return the
6
- * most 'relevant' Documents from some source. It extends the `Runnable`
7
- * class, which means it is a unit of work that can be invoked, batched,
8
- * streamed, or transformed. In the context of `BaseRetriever`, it is
9
- * invoked with a string input and returns an array of `Document` objects.
6
+ * most 'relevant' Documents from some source.
10
7
  */
11
8
  export class BaseRetriever extends Runnable {
12
9
  constructor(fields) {
@@ -1,38 +1,72 @@
1
1
  import { BaseLanguageModelCallOptions } from "../base_language/index.js";
2
2
  export interface OllamaInput {
3
+ embeddingOnly?: boolean;
4
+ f16KV?: boolean;
5
+ frequencyPenalty?: number;
6
+ logitsAll?: boolean;
7
+ lowVram?: boolean;
8
+ mainGpu?: number;
3
9
  model?: string;
4
10
  baseUrl?: string;
5
11
  mirostat?: number;
6
12
  mirostatEta?: number;
7
13
  mirostatTau?: number;
14
+ numBatch?: number;
8
15
  numCtx?: number;
9
16
  numGpu?: number;
17
+ numGqa?: number;
18
+ numKeep?: number;
10
19
  numThread?: number;
20
+ penalizeNewline?: boolean;
21
+ presencePenalty?: number;
11
22
  repeatLastN?: number;
12
23
  repeatPenalty?: number;
24
+ ropeFrequencyBase?: number;
25
+ ropeFrequencyScale?: number;
13
26
  temperature?: number;
14
27
  stop?: string[];
15
28
  tfsZ?: number;
16
29
  topK?: number;
17
30
  topP?: number;
31
+ typicalP?: number;
32
+ useMLock?: boolean;
33
+ useMMap?: boolean;
34
+ vocabOnly?: boolean;
18
35
  }
19
36
  export interface OllamaRequestParams {
20
37
  model: string;
21
38
  prompt: string;
22
39
  options: {
40
+ embedding_only?: boolean;
41
+ f16_kv?: boolean;
42
+ frequency_penalty?: number;
43
+ logits_all?: boolean;
44
+ low_vram?: boolean;
45
+ main_gpu?: number;
23
46
  mirostat?: number;
24
47
  mirostat_eta?: number;
25
48
  mirostat_tau?: number;
49
+ num_batch?: number;
26
50
  num_ctx?: number;
27
51
  num_gpu?: number;
52
+ num_gqa?: number;
53
+ num_keep?: number;
28
54
  num_thread?: number;
55
+ penalize_newline?: boolean;
56
+ presence_penalty?: number;
29
57
  repeat_last_n?: number;
30
58
  repeat_penalty?: number;
59
+ rope_frequency_base?: number;
60
+ rope_frequency_scale?: number;
31
61
  temperature?: number;
32
62
  stop?: string[];
33
63
  tfs_z?: number;
34
64
  top_k?: number;
35
65
  top_p?: number;
66
+ typical_p?: number;
67
+ use_mlock?: boolean;
68
+ use_mmap?: boolean;
69
+ vocab_only?: boolean;
36
70
  };
37
71
  }
38
72
  export interface OllamaCallOptions extends BaseLanguageModelCallOptions {
@@ -235,17 +235,32 @@ class RedisVectorStore extends base_js_1.VectorStore {
235
235
  }
236
236
  /**
237
237
  * Method for dropping an index from the RedisVectorStore.
238
+ * @param deleteDocuments Optional boolean indicating whether to drop the associated documents.
238
239
  * @returns A promise that resolves to a boolean indicating whether the index was dropped.
239
240
  */
240
- async dropIndex() {
241
+ async dropIndex(deleteDocuments) {
241
242
  try {
242
- await this.redisClient.ft.dropIndex(this.indexName);
243
+ const options = deleteDocuments ? { DD: deleteDocuments } : undefined;
244
+ await this.redisClient.ft.dropIndex(this.indexName, options);
243
245
  return true;
244
246
  }
245
247
  catch (err) {
246
248
  return false;
247
249
  }
248
250
  }
251
+ /**
252
+ * Deletes vectors from the vector store.
253
+ * @param params The parameters for deleting vectors.
254
+ * @returns A promise that resolves when the vectors have been deleted.
255
+ */
256
+ async delete(params) {
257
+ if (params.deleteAll) {
258
+ await this.dropIndex(true);
259
+ }
260
+ else {
261
+ throw new Error(`Invalid parameters passed to "delete".`);
262
+ }
263
+ }
249
264
  buildQuery(query, k, filter) {
250
265
  const vectorScoreField = "vector_score";
251
266
  let hybridFields = "*";
@@ -136,9 +136,18 @@ export declare class RedisVectorStore extends VectorStore {
136
136
  createIndex(dimensions?: number): Promise<void>;
137
137
  /**
138
138
  * Method for dropping an index from the RedisVectorStore.
139
+ * @param deleteDocuments Optional boolean indicating whether to drop the associated documents.
139
140
  * @returns A promise that resolves to a boolean indicating whether the index was dropped.
140
141
  */
141
- dropIndex(): Promise<boolean>;
142
+ dropIndex(deleteDocuments?: boolean): Promise<boolean>;
143
+ /**
144
+ * Deletes vectors from the vector store.
145
+ * @param params The parameters for deleting vectors.
146
+ * @returns A promise that resolves when the vectors have been deleted.
147
+ */
148
+ delete(params: {
149
+ deleteAll: boolean;
150
+ }): Promise<void>;
142
151
  private buildQuery;
143
152
  private prepareFilter;
144
153
  /**
@@ -232,17 +232,32 @@ export class RedisVectorStore extends VectorStore {
232
232
  }
233
233
  /**
234
234
  * Method for dropping an index from the RedisVectorStore.
235
+ * @param deleteDocuments Optional boolean indicating whether to drop the associated documents.
235
236
  * @returns A promise that resolves to a boolean indicating whether the index was dropped.
236
237
  */
237
- async dropIndex() {
238
+ async dropIndex(deleteDocuments) {
238
239
  try {
239
- await this.redisClient.ft.dropIndex(this.indexName);
240
+ const options = deleteDocuments ? { DD: deleteDocuments } : undefined;
241
+ await this.redisClient.ft.dropIndex(this.indexName, options);
240
242
  return true;
241
243
  }
242
244
  catch (err) {
243
245
  return false;
244
246
  }
245
247
  }
248
+ /**
249
+ * Deletes vectors from the vector store.
250
+ * @param params The parameters for deleting vectors.
251
+ * @returns A promise that resolves when the vectors have been deleted.
252
+ */
253
+ async delete(params) {
254
+ if (params.deleteAll) {
255
+ await this.dropIndex(true);
256
+ }
257
+ else {
258
+ throw new Error(`Invalid parameters passed to "delete".`);
259
+ }
260
+ }
246
261
  buildQuery(query, k, filter) {
247
262
  const vectorScoreField = "vector_score";
248
263
  let hybridFields = "*";
@@ -76,7 +76,8 @@ class ZepVectorStore extends base_js_1.VectorStore {
76
76
  catch (err) {
77
77
  // eslint-disable-next-line no-instanceof/no-instanceof
78
78
  if (err instanceof Error) {
79
- if (err.name === "NotFoundError") {
79
+ // eslint-disable-next-line no-instanceof/no-instanceof
80
+ if (err instanceof zep_js_1.NotFoundError || err.name === "NotFoundError") {
80
81
  await this.createCollection(args);
81
82
  }
82
83
  else {
@@ -1,4 +1,4 @@
1
- import { ZepClient } from "@getzep/zep-js";
1
+ import { NotFoundError, ZepClient, } from "@getzep/zep-js";
2
2
  import { VectorStore } from "./base.js";
3
3
  import { Document } from "../document.js";
4
4
  import { FakeEmbeddings } from "../embeddings/fake.js";
@@ -73,7 +73,8 @@ export class ZepVectorStore extends VectorStore {
73
73
  catch (err) {
74
74
  // eslint-disable-next-line no-instanceof/no-instanceof
75
75
  if (err instanceof Error) {
76
- if (err.name === "NotFoundError") {
76
+ // eslint-disable-next-line no-instanceof/no-instanceof
77
+ if (err instanceof NotFoundError || err.name === "NotFoundError") {
77
78
  await this.createCollection(args);
78
79
  }
79
80
  else {
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/embeddings/minimax.cjs');
@@ -0,0 +1 @@
1
+ export * from '../dist/embeddings/minimax.js'
@@ -0,0 +1 @@
1
+ export * from '../dist/embeddings/minimax.js'
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/llms/llama_cpp.cjs');
@@ -0,0 +1 @@
1
+ export * from '../dist/llms/llama_cpp.js'
@@ -0,0 +1 @@
1
+ export * from '../dist/llms/llama_cpp.js'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "langchain",
3
- "version": "0.0.136",
3
+ "version": "0.0.138",
4
4
  "description": "Typescript bindings for langchain",
5
5
  "type": "module",
6
6
  "engines": {
@@ -100,6 +100,9 @@
100
100
  "embeddings/googlepalm.cjs",
101
101
  "embeddings/googlepalm.js",
102
102
  "embeddings/googlepalm.d.ts",
103
+ "embeddings/minimax.cjs",
104
+ "embeddings/minimax.js",
105
+ "embeddings/minimax.d.ts",
103
106
  "llms.cjs",
104
107
  "llms.js",
105
108
  "llms.d.ts",
@@ -145,6 +148,9 @@
145
148
  "llms/bedrock.cjs",
146
149
  "llms/bedrock.js",
147
150
  "llms/bedrock.d.ts",
151
+ "llms/llama_cpp.cjs",
152
+ "llms/llama_cpp.js",
153
+ "llms/llama_cpp.d.ts",
148
154
  "llms/writer.cjs",
149
155
  "llms/writer.js",
150
156
  "llms/writer.d.ts",
@@ -391,6 +397,9 @@
391
397
  "chat_models/ollama.cjs",
392
398
  "chat_models/ollama.js",
393
399
  "chat_models/ollama.d.ts",
400
+ "chat_models/minimax.cjs",
401
+ "chat_models/minimax.js",
402
+ "chat_models/minimax.d.ts",
394
403
  "schema.cjs",
395
404
  "schema.js",
396
405
  "schema.d.ts",
@@ -448,6 +457,9 @@
448
457
  "retrievers/document_compressors.cjs",
449
458
  "retrievers/document_compressors.js",
450
459
  "retrievers/document_compressors.d.ts",
460
+ "retrievers/multi_vector.cjs",
461
+ "retrievers/multi_vector.js",
462
+ "retrievers/multi_vector.d.ts",
451
463
  "retrievers/parent_document.cjs",
452
464
  "retrievers/parent_document.js",
453
465
  "retrievers/parent_document.d.ts",
@@ -616,7 +628,7 @@
616
628
  "@elastic/elasticsearch": "^8.4.0",
617
629
  "@faker-js/faker": "^7.6.0",
618
630
  "@getmetal/metal-sdk": "^4.0.0",
619
- "@getzep/zep-js": "^0.6.3",
631
+ "@getzep/zep-js": "^0.7.0",
620
632
  "@gomomento/sdk": "^1.23.0",
621
633
  "@google-ai/generativelanguage": "^0.2.1",
622
634
  "@google-cloud/storage": "^6.10.1",
@@ -687,6 +699,7 @@
687
699
  "ml-matrix": "^6.10.4",
688
700
  "mongodb": "^5.2.0",
689
701
  "mysql2": "^3.3.3",
702
+ "node-llama-cpp": "^2.1.2",
690
703
  "notion-to-md": "^3.1.0",
691
704
  "pdf-parse": "1.1.1",
692
705
  "peggy": "^3.0.2",
@@ -729,7 +742,7 @@
729
742
  "@clickhouse/client": "^0.0.14",
730
743
  "@elastic/elasticsearch": "^8.4.0",
731
744
  "@getmetal/metal-sdk": "*",
732
- "@getzep/zep-js": "^0.6.3",
745
+ "@getzep/zep-js": "^0.7.0",
733
746
  "@gomomento/sdk": "^1.23.0",
734
747
  "@google-ai/generativelanguage": "^0.2.1",
735
748
  "@google-cloud/storage": "^6.10.1",
@@ -772,6 +785,7 @@
772
785
  "mammoth": "*",
773
786
  "mongodb": "^5.2.0",
774
787
  "mysql2": "^3.3.3",
788
+ "node-llama-cpp": "*",
775
789
  "notion-to-md": "^3.1.0",
776
790
  "pdf-parse": "1.1.1",
777
791
  "peggy": "^3.0.2",
@@ -964,6 +978,9 @@
964
978
  "mysql2": {
965
979
  "optional": true
966
980
  },
981
+ "node-llama-cpp": {
982
+ "optional": true
983
+ },
967
984
  "notion-to-md": {
968
985
  "optional": true
969
986
  },
@@ -1220,6 +1237,11 @@
1220
1237
  "import": "./embeddings/googlepalm.js",
1221
1238
  "require": "./embeddings/googlepalm.cjs"
1222
1239
  },
1240
+ "./embeddings/minimax": {
1241
+ "types": "./embeddings/minimax.d.ts",
1242
+ "import": "./embeddings/minimax.js",
1243
+ "require": "./embeddings/minimax.cjs"
1244
+ },
1223
1245
  "./llms": {
1224
1246
  "node": {
1225
1247
  "types": "./llms.d.ts",
@@ -1297,6 +1319,11 @@
1297
1319
  "import": "./llms/bedrock.js",
1298
1320
  "require": "./llms/bedrock.cjs"
1299
1321
  },
1322
+ "./llms/llama_cpp": {
1323
+ "types": "./llms/llama_cpp.d.ts",
1324
+ "import": "./llms/llama_cpp.js",
1325
+ "require": "./llms/llama_cpp.cjs"
1326
+ },
1300
1327
  "./llms/writer": {
1301
1328
  "types": "./llms/writer.d.ts",
1302
1329
  "import": "./llms/writer.js",
@@ -1713,6 +1740,11 @@
1713
1740
  "import": "./chat_models/ollama.js",
1714
1741
  "require": "./chat_models/ollama.cjs"
1715
1742
  },
1743
+ "./chat_models/minimax": {
1744
+ "types": "./chat_models/minimax.d.ts",
1745
+ "import": "./chat_models/minimax.js",
1746
+ "require": "./chat_models/minimax.cjs"
1747
+ },
1716
1748
  "./schema": {
1717
1749
  "types": "./schema.d.ts",
1718
1750
  "import": "./schema.js",
@@ -1810,6 +1842,11 @@
1810
1842
  "import": "./retrievers/document_compressors.js",
1811
1843
  "require": "./retrievers/document_compressors.cjs"
1812
1844
  },
1845
+ "./retrievers/multi_vector": {
1846
+ "types": "./retrievers/multi_vector.d.ts",
1847
+ "import": "./retrievers/multi_vector.js",
1848
+ "require": "./retrievers/multi_vector.cjs"
1849
+ },
1813
1850
  "./retrievers/parent_document": {
1814
1851
  "types": "./retrievers/parent_document.d.ts",
1815
1852
  "import": "./retrievers/parent_document.js",
@@ -0,0 +1 @@
1
+ module.exports = require('../dist/retrievers/multi_vector.cjs');
@@ -0,0 +1 @@
1
+ export * from '../dist/retrievers/multi_vector.js'
@@ -0,0 +1 @@
1
+ export * from '../dist/retrievers/multi_vector.js'