langchain 0.0.76 → 0.0.78
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.
- package/chains/query_constructor/ir.cjs +1 -0
- package/chains/query_constructor/ir.d.ts +1 -0
- package/chains/query_constructor/ir.js +1 -0
- package/chains/query_constructor.cjs +1 -0
- package/chains/query_constructor.d.ts +1 -0
- package/chains/query_constructor.js +1 -0
- package/dist/agents/agent.d.ts +5 -4
- package/dist/agents/agent_toolkits/sql/sql.cjs +2 -2
- package/dist/agents/agent_toolkits/sql/sql.d.ts +1 -1
- package/dist/agents/agent_toolkits/sql/sql.js +2 -2
- package/dist/agents/chat/index.cjs +3 -3
- package/dist/agents/chat/index.d.ts +1 -0
- package/dist/agents/chat/index.js +3 -3
- package/dist/agents/chat_convo/index.cjs +30 -14
- package/dist/agents/chat_convo/index.d.ts +5 -1
- package/dist/agents/chat_convo/index.js +31 -15
- package/dist/agents/chat_convo/outputParser.cjs +79 -7
- package/dist/agents/chat_convo/outputParser.d.ts +25 -13
- package/dist/agents/chat_convo/outputParser.js +77 -6
- package/dist/agents/chat_convo/prompt.cjs +11 -8
- package/dist/agents/chat_convo/prompt.d.ts +2 -2
- package/dist/agents/chat_convo/prompt.js +11 -8
- package/dist/agents/executor.d.ts +2 -3
- package/dist/agents/index.cjs +6 -1
- package/dist/agents/index.d.ts +2 -0
- package/dist/agents/index.js +2 -0
- package/dist/agents/initialize.cjs +19 -13
- package/dist/agents/initialize.d.ts +12 -2
- package/dist/agents/initialize.js +16 -10
- package/dist/agents/mrkl/index.cjs +3 -3
- package/dist/agents/mrkl/index.d.ts +1 -0
- package/dist/agents/mrkl/index.js +3 -3
- package/dist/agents/mrkl/outputParser.cjs +2 -2
- package/dist/agents/mrkl/outputParser.js +2 -2
- package/dist/agents/structured_chat/index.cjs +106 -0
- package/dist/agents/structured_chat/index.d.ts +44 -0
- package/dist/agents/structured_chat/index.js +102 -0
- package/dist/agents/structured_chat/outputParser.cjs +92 -0
- package/dist/agents/structured_chat/outputParser.d.ts +24 -0
- package/dist/agents/structured_chat/outputParser.js +87 -0
- package/dist/agents/structured_chat/prompt.cjs +62 -0
- package/dist/agents/structured_chat/prompt.d.ts +4 -0
- package/dist/agents/structured_chat/prompt.js +59 -0
- package/dist/callbacks/handlers/tracer_langchain.cjs +12 -4
- package/dist/callbacks/handlers/tracer_langchain.d.ts +4 -1
- package/dist/callbacks/handlers/tracer_langchain.js +12 -4
- package/dist/callbacks/manager.cjs +6 -2
- package/dist/callbacks/manager.js +6 -2
- package/dist/chains/query_constructor/index.cjs +105 -0
- package/dist/chains/query_constructor/index.d.ts +37 -0
- package/dist/chains/query_constructor/index.js +95 -0
- package/dist/chains/query_constructor/ir.cjs +116 -0
- package/dist/chains/query_constructor/ir.d.ts +60 -0
- package/dist/chains/query_constructor/ir.js +107 -0
- package/dist/chains/query_constructor/parser.cjs +103 -0
- package/dist/chains/query_constructor/parser.d.ts +12 -0
- package/dist/chains/query_constructor/parser.js +99 -0
- package/dist/chains/query_constructor/prompt.cjs +127 -0
- package/dist/chains/query_constructor/prompt.d.ts +15 -0
- package/dist/chains/query_constructor/prompt.js +124 -0
- package/dist/chains/sql_db/sql_db_chain.cjs +13 -0
- package/dist/chains/sql_db/sql_db_chain.d.ts +2 -0
- package/dist/chains/sql_db/sql_db_chain.js +13 -0
- package/dist/client/langchainplus.cjs +21 -15
- package/dist/client/langchainplus.d.ts +4 -2
- package/dist/client/langchainplus.js +21 -15
- package/dist/llms/sagemaker_endpoint.cjs +123 -0
- package/dist/llms/sagemaker_endpoint.d.ts +82 -0
- package/dist/llms/sagemaker_endpoint.js +118 -0
- package/dist/memory/buffer_memory.cjs +1 -1
- package/dist/memory/buffer_memory.js +1 -1
- package/dist/memory/buffer_window_memory.cjs +1 -1
- package/dist/memory/buffer_window_memory.js +1 -1
- package/dist/output_parsers/expression.cjs +68 -0
- package/dist/output_parsers/expression.d.ts +25 -0
- package/dist/output_parsers/expression.js +49 -0
- package/dist/output_parsers/expression_type_handlers/array_literal_expression_handler.cjs +26 -0
- package/dist/output_parsers/expression_type_handlers/array_literal_expression_handler.d.ts +7 -0
- package/dist/output_parsers/expression_type_handlers/array_literal_expression_handler.js +22 -0
- package/dist/output_parsers/expression_type_handlers/base.cjs +67 -0
- package/dist/output_parsers/expression_type_handlers/base.d.ts +23 -0
- package/dist/output_parsers/expression_type_handlers/base.js +62 -0
- package/dist/output_parsers/expression_type_handlers/boolean_literal_handler.cjs +24 -0
- package/dist/output_parsers/expression_type_handlers/boolean_literal_handler.d.ts +7 -0
- package/dist/output_parsers/expression_type_handlers/boolean_literal_handler.js +20 -0
- package/dist/output_parsers/expression_type_handlers/call_expression_handler.cjs +52 -0
- package/dist/output_parsers/expression_type_handlers/call_expression_handler.d.ts +7 -0
- package/dist/output_parsers/expression_type_handlers/call_expression_handler.js +48 -0
- package/dist/output_parsers/expression_type_handlers/factory.cjs +56 -0
- package/dist/output_parsers/expression_type_handlers/factory.d.ts +9 -0
- package/dist/output_parsers/expression_type_handlers/factory.js +52 -0
- package/dist/output_parsers/expression_type_handlers/identifier_handler.cjs +22 -0
- package/dist/output_parsers/expression_type_handlers/identifier_handler.d.ts +7 -0
- package/dist/output_parsers/expression_type_handlers/identifier_handler.js +18 -0
- package/dist/output_parsers/expression_type_handlers/member_expression_handler.cjs +45 -0
- package/dist/output_parsers/expression_type_handlers/member_expression_handler.d.ts +7 -0
- package/dist/output_parsers/expression_type_handlers/member_expression_handler.js +41 -0
- package/dist/output_parsers/expression_type_handlers/numeric_literal_handler.cjs +24 -0
- package/dist/output_parsers/expression_type_handlers/numeric_literal_handler.d.ts +7 -0
- package/dist/output_parsers/expression_type_handlers/numeric_literal_handler.js +20 -0
- package/dist/output_parsers/expression_type_handlers/object_literal_expression_handler.cjs +29 -0
- package/dist/output_parsers/expression_type_handlers/object_literal_expression_handler.d.ts +7 -0
- package/dist/output_parsers/expression_type_handlers/object_literal_expression_handler.js +25 -0
- package/dist/output_parsers/expression_type_handlers/property_assignment_handler.cjs +36 -0
- package/dist/output_parsers/expression_type_handlers/property_assignment_handler.d.ts +7 -0
- package/dist/output_parsers/expression_type_handlers/property_assignment_handler.js +32 -0
- package/dist/output_parsers/expression_type_handlers/string_literal_handler.cjs +22 -0
- package/dist/output_parsers/expression_type_handlers/string_literal_handler.d.ts +7 -0
- package/dist/output_parsers/expression_type_handlers/string_literal_handler.js +18 -0
- package/dist/output_parsers/expression_type_handlers/types.cjs +2 -0
- package/dist/output_parsers/expression_type_handlers/types.d.ts +41 -0
- package/dist/output_parsers/expression_type_handlers/types.js +1 -0
- package/dist/output_parsers/index.cjs +2 -1
- package/dist/output_parsers/index.d.ts +1 -1
- package/dist/output_parsers/index.js +1 -1
- package/dist/output_parsers/structured.cjs +81 -23
- package/dist/output_parsers/structured.d.ts +18 -0
- package/dist/output_parsers/structured.js +79 -22
- package/dist/retrievers/self_query/index.cjs +79 -0
- package/dist/retrievers/self_query/index.d.ts +33 -0
- package/dist/retrievers/self_query/index.js +74 -0
- package/dist/retrievers/self_query/translator.cjs +72 -0
- package/dist/retrievers/self_query/translator.d.ts +14 -0
- package/dist/retrievers/self_query/translator.js +67 -0
- package/dist/schema/query_constructor.cjs +26 -0
- package/dist/schema/query_constructor.d.ts +6 -0
- package/dist/schema/query_constructor.js +22 -0
- package/dist/text_splitter.cjs +2 -1
- package/dist/text_splitter.js +2 -1
- package/dist/tools/dynamic.cjs +39 -1
- package/dist/tools/dynamic.d.ts +18 -3
- package/dist/tools/dynamic.js +38 -1
- package/dist/tools/index.cjs +2 -1
- package/dist/tools/index.d.ts +1 -1
- package/dist/tools/index.js +1 -1
- package/dist/tools/json.cjs +3 -1
- package/dist/tools/json.js +3 -1
- package/dist/tools/sql.cjs +17 -11
- package/dist/tools/sql.d.ts +7 -1
- package/dist/tools/sql.js +17 -11
- package/dist/util/event-source-parse.cjs +31 -5
- package/dist/util/event-source-parse.d.ts +3 -3
- package/dist/util/event-source-parse.js +31 -5
- package/dist/vectorstores/faiss.cjs +245 -0
- package/dist/vectorstores/faiss.d.ts +39 -0
- package/dist/vectorstores/faiss.js +218 -0
- package/llms/sagemaker_endpoint.cjs +1 -0
- package/llms/sagemaker_endpoint.d.ts +1 -0
- package/llms/sagemaker_endpoint.js +1 -0
- package/output_parsers/expression.cjs +1 -0
- package/output_parsers/expression.d.ts +1 -0
- package/output_parsers/expression.js +1 -0
- package/package.json +79 -3
- package/retrievers/self_query.cjs +1 -0
- package/retrievers/self_query.d.ts +1 -0
- package/retrievers/self_query.js +1 -0
- package/schema/query_constructor.cjs +1 -0
- package/schema/query_constructor.d.ts +1 -0
- package/schema/query_constructor.js +1 -0
- package/vectorstores/faiss.cjs +1 -0
- package/vectorstores/faiss.d.ts +1 -0
- package/vectorstores/faiss.js +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "langchain",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.78",
|
|
4
4
|
"description": "Typescript bindings for langchain",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -37,6 +37,12 @@
|
|
|
37
37
|
"chains/load.cjs",
|
|
38
38
|
"chains/load.js",
|
|
39
39
|
"chains/load.d.ts",
|
|
40
|
+
"chains/query_constructor.cjs",
|
|
41
|
+
"chains/query_constructor.js",
|
|
42
|
+
"chains/query_constructor.d.ts",
|
|
43
|
+
"chains/query_constructor/ir.cjs",
|
|
44
|
+
"chains/query_constructor/ir.js",
|
|
45
|
+
"chains/query_constructor/ir.d.ts",
|
|
40
46
|
"embeddings.cjs",
|
|
41
47
|
"embeddings.js",
|
|
42
48
|
"embeddings.d.ts",
|
|
@@ -79,6 +85,9 @@
|
|
|
79
85
|
"llms/replicate.cjs",
|
|
80
86
|
"llms/replicate.js",
|
|
81
87
|
"llms/replicate.d.ts",
|
|
88
|
+
"llms/sagemaker_endpoint.cjs",
|
|
89
|
+
"llms/sagemaker_endpoint.js",
|
|
90
|
+
"llms/sagemaker_endpoint.d.ts",
|
|
82
91
|
"prompts.cjs",
|
|
83
92
|
"prompts.js",
|
|
84
93
|
"prompts.d.ts",
|
|
@@ -100,6 +109,9 @@
|
|
|
100
109
|
"vectorstores/hnswlib.cjs",
|
|
101
110
|
"vectorstores/hnswlib.js",
|
|
102
111
|
"vectorstores/hnswlib.d.ts",
|
|
112
|
+
"vectorstores/faiss.cjs",
|
|
113
|
+
"vectorstores/faiss.js",
|
|
114
|
+
"vectorstores/faiss.d.ts",
|
|
103
115
|
"vectorstores/weaviate.cjs",
|
|
104
116
|
"vectorstores/weaviate.js",
|
|
105
117
|
"vectorstores/weaviate.d.ts",
|
|
@@ -229,6 +241,9 @@
|
|
|
229
241
|
"schema/output_parser.cjs",
|
|
230
242
|
"schema/output_parser.js",
|
|
231
243
|
"schema/output_parser.d.ts",
|
|
244
|
+
"schema/query_constructor.cjs",
|
|
245
|
+
"schema/query_constructor.js",
|
|
246
|
+
"schema/query_constructor.d.ts",
|
|
232
247
|
"sql_db.cjs",
|
|
233
248
|
"sql_db.js",
|
|
234
249
|
"sql_db.d.ts",
|
|
@@ -238,6 +253,9 @@
|
|
|
238
253
|
"output_parsers.cjs",
|
|
239
254
|
"output_parsers.js",
|
|
240
255
|
"output_parsers.d.ts",
|
|
256
|
+
"output_parsers/expression.cjs",
|
|
257
|
+
"output_parsers/expression.js",
|
|
258
|
+
"output_parsers/expression.d.ts",
|
|
241
259
|
"retrievers.cjs",
|
|
242
260
|
"retrievers.js",
|
|
243
261
|
"retrievers.d.ts",
|
|
@@ -268,6 +286,9 @@
|
|
|
268
286
|
"retrievers/hyde.cjs",
|
|
269
287
|
"retrievers/hyde.js",
|
|
270
288
|
"retrievers/hyde.d.ts",
|
|
289
|
+
"retrievers/self_query.cjs",
|
|
290
|
+
"retrievers/self_query.js",
|
|
291
|
+
"retrievers/self_query.d.ts",
|
|
271
292
|
"cache.cjs",
|
|
272
293
|
"cache.js",
|
|
273
294
|
"cache.d.ts",
|
|
@@ -319,8 +340,8 @@
|
|
|
319
340
|
"release": "release-it --only-version --config .release-it.json",
|
|
320
341
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000",
|
|
321
342
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
|
|
322
|
-
"test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout
|
|
323
|
-
"test:single": "NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.cjs --testTimeout
|
|
343
|
+
"test:integration": "NODE_OPTIONS=--experimental-vm-modules jest --testPathPattern=\\.int\\.test.ts --testTimeout 100000",
|
|
344
|
+
"test:single": "NODE_OPTIONS=--experimental-vm-modules yarn run jest --config jest.config.cjs --testTimeout 100000",
|
|
324
345
|
"format": "prettier --write \"src\"",
|
|
325
346
|
"format:check": "prettier --check \"src\""
|
|
326
347
|
},
|
|
@@ -330,6 +351,7 @@
|
|
|
330
351
|
"@aws-sdk/client-dynamodb": "^3.310.0",
|
|
331
352
|
"@aws-sdk/client-lambda": "^3.310.0",
|
|
332
353
|
"@aws-sdk/client-s3": "^3.310.0",
|
|
354
|
+
"@aws-sdk/client-sagemaker-runtime": "^3.310.0",
|
|
333
355
|
"@clickhouse/client": "^0.0.14",
|
|
334
356
|
"@faker-js/faker": "^7.6.0",
|
|
335
357
|
"@getmetal/metal-sdk": "^2.0.1",
|
|
@@ -366,13 +388,16 @@
|
|
|
366
388
|
"eslint-plugin-import": "^2.27.5",
|
|
367
389
|
"eslint-plugin-no-instanceof": "^1.0.1",
|
|
368
390
|
"eslint-plugin-prettier": "^4.2.1",
|
|
391
|
+
"faiss-node": "^0.1.1",
|
|
369
392
|
"graphql": "^16.6.0",
|
|
370
393
|
"hnswlib-node": "^1.4.2",
|
|
371
394
|
"html-to-text": "^9.0.5",
|
|
372
395
|
"jest": "^29.5.0",
|
|
373
396
|
"mammoth": "^1.5.1",
|
|
397
|
+
"meriyah": "^4.3.7",
|
|
374
398
|
"mongodb": "^5.2.0",
|
|
375
399
|
"pdf-parse": "1.1.1",
|
|
400
|
+
"pickleparser": "^0.1.0",
|
|
376
401
|
"playwright": "^1.32.1",
|
|
377
402
|
"prettier": "^2.8.3",
|
|
378
403
|
"puppeteer": "^19.7.2",
|
|
@@ -391,6 +416,7 @@
|
|
|
391
416
|
"@aws-sdk/client-dynamodb": "^3.310.0",
|
|
392
417
|
"@aws-sdk/client-lambda": "^3.310.0",
|
|
393
418
|
"@aws-sdk/client-s3": "^3.310.0",
|
|
419
|
+
"@aws-sdk/client-sagemaker-runtime": "^3.310.0",
|
|
394
420
|
"@clickhouse/client": "^0.0.14",
|
|
395
421
|
"@getmetal/metal-sdk": "*",
|
|
396
422
|
"@huggingface/inference": "^1.5.1",
|
|
@@ -408,11 +434,14 @@
|
|
|
408
434
|
"cohere-ai": "^5.0.2",
|
|
409
435
|
"d3-dsv": "^2.0.0",
|
|
410
436
|
"epub2": "^3.0.1",
|
|
437
|
+
"faiss-node": "^0.1.1",
|
|
411
438
|
"hnswlib-node": "^1.4.2",
|
|
412
439
|
"html-to-text": "^9.0.5",
|
|
413
440
|
"mammoth": "*",
|
|
441
|
+
"meriyah": "*",
|
|
414
442
|
"mongodb": "^5.2.0",
|
|
415
443
|
"pdf-parse": "1.1.1",
|
|
444
|
+
"pickleparser": "^0.1.0",
|
|
416
445
|
"playwright": "^1.32.1",
|
|
417
446
|
"puppeteer": "^19.7.2",
|
|
418
447
|
"redis": "^4.6.4",
|
|
@@ -431,6 +460,9 @@
|
|
|
431
460
|
"@aws-sdk/client-s3": {
|
|
432
461
|
"optional": true
|
|
433
462
|
},
|
|
463
|
+
"@aws-sdk/client-sagemaker-runtime": {
|
|
464
|
+
"optional": true
|
|
465
|
+
},
|
|
434
466
|
"@clickhouse/client": {
|
|
435
467
|
"optional": true
|
|
436
468
|
},
|
|
@@ -482,6 +514,9 @@
|
|
|
482
514
|
"epub2": {
|
|
483
515
|
"optional": true
|
|
484
516
|
},
|
|
517
|
+
"faiss-node": {
|
|
518
|
+
"optional": true
|
|
519
|
+
},
|
|
485
520
|
"hnswlib-node": {
|
|
486
521
|
"optional": true
|
|
487
522
|
},
|
|
@@ -491,12 +526,18 @@
|
|
|
491
526
|
"mammoth": {
|
|
492
527
|
"optional": true
|
|
493
528
|
},
|
|
529
|
+
"meriyah": {
|
|
530
|
+
"optional": true
|
|
531
|
+
},
|
|
494
532
|
"mongodb": {
|
|
495
533
|
"optional": true
|
|
496
534
|
},
|
|
497
535
|
"pdf-parse": {
|
|
498
536
|
"optional": true
|
|
499
537
|
},
|
|
538
|
+
"pickleparser": {
|
|
539
|
+
"optional": true
|
|
540
|
+
},
|
|
500
541
|
"playwright": {
|
|
501
542
|
"optional": true
|
|
502
543
|
},
|
|
@@ -605,6 +646,16 @@
|
|
|
605
646
|
"import": "./chains/load.js",
|
|
606
647
|
"require": "./chains/load.cjs"
|
|
607
648
|
},
|
|
649
|
+
"./chains/query_constructor": {
|
|
650
|
+
"types": "./chains/query_constructor.d.ts",
|
|
651
|
+
"import": "./chains/query_constructor.js",
|
|
652
|
+
"require": "./chains/query_constructor.cjs"
|
|
653
|
+
},
|
|
654
|
+
"./chains/query_constructor/ir": {
|
|
655
|
+
"types": "./chains/query_constructor/ir.d.ts",
|
|
656
|
+
"import": "./chains/query_constructor/ir.js",
|
|
657
|
+
"require": "./chains/query_constructor/ir.cjs"
|
|
658
|
+
},
|
|
608
659
|
"./embeddings": {
|
|
609
660
|
"node": {
|
|
610
661
|
"types": "./embeddings.d.ts",
|
|
@@ -679,6 +730,11 @@
|
|
|
679
730
|
"import": "./llms/replicate.js",
|
|
680
731
|
"require": "./llms/replicate.cjs"
|
|
681
732
|
},
|
|
733
|
+
"./llms/sagemaker_endpoint": {
|
|
734
|
+
"types": "./llms/sagemaker_endpoint.d.ts",
|
|
735
|
+
"import": "./llms/sagemaker_endpoint.js",
|
|
736
|
+
"require": "./llms/sagemaker_endpoint.cjs"
|
|
737
|
+
},
|
|
682
738
|
"./prompts": {
|
|
683
739
|
"types": "./prompts.d.ts",
|
|
684
740
|
"import": "./prompts.js",
|
|
@@ -716,6 +772,11 @@
|
|
|
716
772
|
"import": "./vectorstores/hnswlib.js",
|
|
717
773
|
"require": "./vectorstores/hnswlib.cjs"
|
|
718
774
|
},
|
|
775
|
+
"./vectorstores/faiss": {
|
|
776
|
+
"types": "./vectorstores/faiss.d.ts",
|
|
777
|
+
"import": "./vectorstores/faiss.js",
|
|
778
|
+
"require": "./vectorstores/faiss.cjs"
|
|
779
|
+
},
|
|
719
780
|
"./vectorstores/weaviate": {
|
|
720
781
|
"types": "./vectorstores/weaviate.d.ts",
|
|
721
782
|
"import": "./vectorstores/weaviate.js",
|
|
@@ -935,6 +996,11 @@
|
|
|
935
996
|
"import": "./schema/output_parser.js",
|
|
936
997
|
"require": "./schema/output_parser.cjs"
|
|
937
998
|
},
|
|
999
|
+
"./schema/query_constructor": {
|
|
1000
|
+
"types": "./schema/query_constructor.d.ts",
|
|
1001
|
+
"import": "./schema/query_constructor.js",
|
|
1002
|
+
"require": "./schema/query_constructor.cjs"
|
|
1003
|
+
},
|
|
938
1004
|
"./sql_db": {
|
|
939
1005
|
"types": "./sql_db.d.ts",
|
|
940
1006
|
"import": "./sql_db.js",
|
|
@@ -950,6 +1016,11 @@
|
|
|
950
1016
|
"import": "./output_parsers.js",
|
|
951
1017
|
"require": "./output_parsers.cjs"
|
|
952
1018
|
},
|
|
1019
|
+
"./output_parsers/expression": {
|
|
1020
|
+
"types": "./output_parsers/expression.d.ts",
|
|
1021
|
+
"import": "./output_parsers/expression.js",
|
|
1022
|
+
"require": "./output_parsers/expression.cjs"
|
|
1023
|
+
},
|
|
953
1024
|
"./retrievers": {
|
|
954
1025
|
"node": {
|
|
955
1026
|
"types": "./retrievers.d.ts",
|
|
@@ -1002,6 +1073,11 @@
|
|
|
1002
1073
|
"import": "./retrievers/hyde.js",
|
|
1003
1074
|
"require": "./retrievers/hyde.cjs"
|
|
1004
1075
|
},
|
|
1076
|
+
"./retrievers/self_query": {
|
|
1077
|
+
"types": "./retrievers/self_query.d.ts",
|
|
1078
|
+
"import": "./retrievers/self_query.js",
|
|
1079
|
+
"require": "./retrievers/self_query.cjs"
|
|
1080
|
+
},
|
|
1005
1081
|
"./cache": {
|
|
1006
1082
|
"types": "./cache.d.ts",
|
|
1007
1083
|
"import": "./cache.js",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/retrievers/self_query/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/retrievers/self_query/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/retrievers/self_query/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/schema/query_constructor.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/schema/query_constructor.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/schema/query_constructor.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/vectorstores/faiss.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/vectorstores/faiss.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/vectorstores/faiss.js'
|