langchain 0.0.167 → 0.0.169
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/README.md +4 -4
- package/chat_models/cloudflare_workersai.cjs +1 -0
- package/chat_models/cloudflare_workersai.d.ts +1 -0
- package/chat_models/cloudflare_workersai.js +1 -0
- package/chat_models/fake.cjs +1 -0
- package/chat_models/fake.d.ts +1 -0
- package/chat_models/fake.js +1 -0
- package/chat_models/yandex.cjs +1 -0
- package/chat_models/yandex.d.ts +1 -0
- package/chat_models/yandex.js +1 -0
- package/dist/agents/chat/index.cjs +3 -2
- package/dist/agents/chat/index.d.ts +3 -0
- package/dist/agents/chat/index.js +3 -2
- package/dist/callbacks/handlers/llmonitor.cjs +21 -17
- package/dist/callbacks/handlers/llmonitor.js +21 -17
- package/dist/chat_models/cloudflare_workersai.cjs +145 -0
- package/dist/chat_models/cloudflare_workersai.d.ts +46 -0
- package/dist/chat_models/cloudflare_workersai.js +141 -0
- package/dist/chat_models/fake.cjs +101 -0
- package/dist/chat_models/fake.d.ts +36 -0
- package/dist/chat_models/fake.js +97 -0
- package/dist/chat_models/yandex.cjs +117 -0
- package/dist/chat_models/yandex.d.ts +16 -0
- package/dist/chat_models/yandex.js +113 -0
- package/dist/evaluation/comparison/prompt.d.ts +2 -2
- package/dist/experimental/chains/violation_of_expectations/index.cjs +5 -0
- package/dist/experimental/chains/violation_of_expectations/index.d.ts +1 -0
- package/dist/experimental/chains/violation_of_expectations/index.js +1 -0
- package/dist/experimental/chains/violation_of_expectations/types.cjs +49 -0
- package/dist/experimental/chains/violation_of_expectations/types.d.ts +69 -0
- package/dist/experimental/chains/violation_of_expectations/types.js +46 -0
- package/dist/experimental/chains/violation_of_expectations/violation_of_expectations_chain.cjs +328 -0
- package/dist/experimental/chains/violation_of_expectations/violation_of_expectations_chain.d.ts +148 -0
- package/dist/experimental/chains/violation_of_expectations/violation_of_expectations_chain.js +324 -0
- package/dist/experimental/chains/violation_of_expectations/violation_of_expectations_prompt.cjs +49 -0
- package/dist/experimental/chains/violation_of_expectations/violation_of_expectations_prompt.d.ts +5 -0
- package/dist/experimental/chains/violation_of_expectations/violation_of_expectations_prompt.js +46 -0
- package/dist/llms/cloudflare_workersai.cjs +124 -0
- package/dist/llms/cloudflare_workersai.d.ts +49 -0
- package/dist/llms/cloudflare_workersai.js +120 -0
- package/dist/llms/fake.cjs +82 -0
- package/dist/llms/fake.d.ts +31 -0
- package/dist/llms/fake.js +78 -0
- package/dist/llms/sagemaker_endpoint.cjs +9 -7
- package/dist/llms/sagemaker_endpoint.d.ts +3 -3
- package/dist/llms/sagemaker_endpoint.js +9 -7
- package/dist/load/import_constants.cjs +2 -0
- package/dist/load/import_constants.js +2 -0
- package/dist/load/import_map.cjs +8 -2
- package/dist/load/import_map.d.ts +6 -0
- package/dist/load/import_map.js +6 -0
- package/dist/retrievers/zep.cjs +29 -3
- package/dist/retrievers/zep.d.ts +14 -0
- package/dist/retrievers/zep.js +29 -3
- package/dist/util/axios-fetch-adapter.cjs +1 -1
- package/dist/util/axios-fetch-adapter.js +1 -1
- package/dist/util/env.cjs +1 -1
- package/dist/util/env.js +1 -1
- package/dist/util/event-source-parse.cjs +1 -1
- package/dist/util/event-source-parse.js +1 -1
- package/dist/vectorstores/closevector/common.cjs +128 -0
- package/dist/vectorstores/closevector/common.d.ts +82 -0
- package/dist/vectorstores/closevector/common.js +124 -0
- package/dist/vectorstores/closevector/node.cjs +109 -0
- package/dist/vectorstores/closevector/node.d.ts +83 -0
- package/dist/vectorstores/closevector/node.js +105 -0
- package/dist/vectorstores/closevector/web.cjs +109 -0
- package/dist/vectorstores/closevector/web.d.ts +80 -0
- package/dist/vectorstores/closevector/web.js +105 -0
- package/dist/vectorstores/faiss.cjs +38 -6
- package/dist/vectorstores/faiss.d.ts +14 -2
- package/dist/vectorstores/faiss.js +38 -6
- package/dist/vectorstores/weaviate.cjs +13 -2
- package/dist/vectorstores/weaviate.js +13 -2
- package/experimental/chains/violation_of_expectations.cjs +1 -0
- package/experimental/chains/violation_of_expectations.d.ts +1 -0
- package/experimental/chains/violation_of_expectations.js +1 -0
- package/llms/cloudflare_workersai.cjs +1 -0
- package/llms/cloudflare_workersai.d.ts +1 -0
- package/llms/cloudflare_workersai.js +1 -0
- package/llms/fake.cjs +1 -0
- package/llms/fake.d.ts +1 -0
- package/llms/fake.js +1 -0
- package/package.json +92 -13
- package/vectorstores/closevector/node.cjs +1 -0
- package/vectorstores/closevector/node.d.ts +1 -0
- package/vectorstores/closevector/node.js +1 -0
- package/vectorstores/closevector/web.cjs +1 -0
- package/vectorstores/closevector/web.d.ts +1 -0
- package/vectorstores/closevector/web.js +1 -0
|
@@ -159,13 +159,24 @@ class WeaviateStore extends base_js_1.VectorStore {
|
|
|
159
159
|
};
|
|
160
160
|
});
|
|
161
161
|
try {
|
|
162
|
-
await this.client.batch
|
|
162
|
+
const responses = await this.client.batch
|
|
163
163
|
.objectsBatcher()
|
|
164
164
|
.withObjects(...batch)
|
|
165
165
|
.do();
|
|
166
|
+
// if storing vectors fails, we need to know why
|
|
167
|
+
const errorMessages = [];
|
|
168
|
+
responses.forEach((response) => {
|
|
169
|
+
if (response?.result?.errors?.error) {
|
|
170
|
+
errorMessages.push(...response.result.errors.error.map((err) => err.message ??
|
|
171
|
+
"!! Unfortunately no error message was presented in the API response !!"));
|
|
172
|
+
}
|
|
173
|
+
});
|
|
174
|
+
if (errorMessages.length > 0) {
|
|
175
|
+
throw new Error(errorMessages.join("\n"));
|
|
176
|
+
}
|
|
166
177
|
}
|
|
167
178
|
catch (e) {
|
|
168
|
-
throw Error(`
|
|
179
|
+
throw Error(`Error adding vectors: ${e}`);
|
|
169
180
|
}
|
|
170
181
|
return documentIds;
|
|
171
182
|
}
|
|
@@ -132,13 +132,24 @@ export class WeaviateStore extends VectorStore {
|
|
|
132
132
|
};
|
|
133
133
|
});
|
|
134
134
|
try {
|
|
135
|
-
await this.client.batch
|
|
135
|
+
const responses = await this.client.batch
|
|
136
136
|
.objectsBatcher()
|
|
137
137
|
.withObjects(...batch)
|
|
138
138
|
.do();
|
|
139
|
+
// if storing vectors fails, we need to know why
|
|
140
|
+
const errorMessages = [];
|
|
141
|
+
responses.forEach((response) => {
|
|
142
|
+
if (response?.result?.errors?.error) {
|
|
143
|
+
errorMessages.push(...response.result.errors.error.map((err) => err.message ??
|
|
144
|
+
"!! Unfortunately no error message was presented in the API response !!"));
|
|
145
|
+
}
|
|
146
|
+
});
|
|
147
|
+
if (errorMessages.length > 0) {
|
|
148
|
+
throw new Error(errorMessages.join("\n"));
|
|
149
|
+
}
|
|
139
150
|
}
|
|
140
151
|
catch (e) {
|
|
141
|
-
throw Error(`
|
|
152
|
+
throw Error(`Error adding vectors: ${e}`);
|
|
142
153
|
}
|
|
143
154
|
return documentIds;
|
|
144
155
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/experimental/chains/violation_of_expectations/index.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/experimental/chains/violation_of_expectations/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/experimental/chains/violation_of_expectations/index.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/llms/cloudflare_workersai.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/llms/cloudflare_workersai.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/llms/cloudflare_workersai.js'
|
package/llms/fake.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../dist/llms/fake.cjs');
|
package/llms/fake.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/llms/fake.js'
|
package/llms/fake.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../dist/llms/fake.js'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "langchain",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.169",
|
|
4
4
|
"description": "Typescript bindings for langchain",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -133,6 +133,9 @@
|
|
|
133
133
|
"llms/aleph_alpha.cjs",
|
|
134
134
|
"llms/aleph_alpha.js",
|
|
135
135
|
"llms/aleph_alpha.d.ts",
|
|
136
|
+
"llms/cloudflare_workersai.cjs",
|
|
137
|
+
"llms/cloudflare_workersai.js",
|
|
138
|
+
"llms/cloudflare_workersai.d.ts",
|
|
136
139
|
"llms/cohere.cjs",
|
|
137
140
|
"llms/cohere.js",
|
|
138
141
|
"llms/cohere.d.ts",
|
|
@@ -178,6 +181,9 @@
|
|
|
178
181
|
"llms/yandex.cjs",
|
|
179
182
|
"llms/yandex.js",
|
|
180
183
|
"llms/yandex.d.ts",
|
|
184
|
+
"llms/fake.cjs",
|
|
185
|
+
"llms/fake.js",
|
|
186
|
+
"llms/fake.d.ts",
|
|
181
187
|
"prompts.cjs",
|
|
182
188
|
"prompts.js",
|
|
183
189
|
"prompts.d.ts",
|
|
@@ -202,6 +208,12 @@
|
|
|
202
208
|
"vectorstores/cloudflare_vectorize.cjs",
|
|
203
209
|
"vectorstores/cloudflare_vectorize.js",
|
|
204
210
|
"vectorstores/cloudflare_vectorize.d.ts",
|
|
211
|
+
"vectorstores/closevector/web.cjs",
|
|
212
|
+
"vectorstores/closevector/web.js",
|
|
213
|
+
"vectorstores/closevector/web.d.ts",
|
|
214
|
+
"vectorstores/closevector/node.cjs",
|
|
215
|
+
"vectorstores/closevector/node.js",
|
|
216
|
+
"vectorstores/closevector/node.d.ts",
|
|
205
217
|
"vectorstores/chroma.cjs",
|
|
206
218
|
"vectorstores/chroma.js",
|
|
207
219
|
"vectorstores/chroma.d.ts",
|
|
@@ -436,6 +448,9 @@
|
|
|
436
448
|
"chat_models/bedrock.cjs",
|
|
437
449
|
"chat_models/bedrock.js",
|
|
438
450
|
"chat_models/bedrock.d.ts",
|
|
451
|
+
"chat_models/cloudflare_workersai.cjs",
|
|
452
|
+
"chat_models/cloudflare_workersai.js",
|
|
453
|
+
"chat_models/cloudflare_workersai.d.ts",
|
|
439
454
|
"chat_models/googlevertexai.cjs",
|
|
440
455
|
"chat_models/googlevertexai.js",
|
|
441
456
|
"chat_models/googlevertexai.d.ts",
|
|
@@ -457,6 +472,12 @@
|
|
|
457
472
|
"chat_models/minimax.cjs",
|
|
458
473
|
"chat_models/minimax.js",
|
|
459
474
|
"chat_models/minimax.d.ts",
|
|
475
|
+
"chat_models/yandex.cjs",
|
|
476
|
+
"chat_models/yandex.js",
|
|
477
|
+
"chat_models/yandex.d.ts",
|
|
478
|
+
"chat_models/fake.cjs",
|
|
479
|
+
"chat_models/fake.js",
|
|
480
|
+
"chat_models/fake.d.ts",
|
|
460
481
|
"schema.cjs",
|
|
461
482
|
"schema.js",
|
|
462
483
|
"schema.d.ts",
|
|
@@ -682,6 +703,9 @@
|
|
|
682
703
|
"experimental/hubs/makersuite/googlemakersuitehub.cjs",
|
|
683
704
|
"experimental/hubs/makersuite/googlemakersuitehub.js",
|
|
684
705
|
"experimental/hubs/makersuite/googlemakersuitehub.d.ts",
|
|
706
|
+
"experimental/chains/violation_of_expectations.cjs",
|
|
707
|
+
"experimental/chains/violation_of_expectations.js",
|
|
708
|
+
"experimental/chains/violation_of_expectations.d.ts",
|
|
685
709
|
"evaluation.cjs",
|
|
686
710
|
"evaluation.js",
|
|
687
711
|
"evaluation.d.ts",
|
|
@@ -698,13 +722,13 @@
|
|
|
698
722
|
},
|
|
699
723
|
"scripts": {
|
|
700
724
|
"build": "yarn clean && yarn build:esm && yarn build:cjs && node scripts/create-entrypoints.js && node scripts/check-tree-shaking.js",
|
|
701
|
-
"build:esm": "tsc --outDir dist/ && rimraf dist/tests dist/**/tests",
|
|
702
|
-
"build:cjs": "tsc --outDir dist-cjs/ -p tsconfig.cjs.json && node scripts/move-cjs-to-dist.js && rimraf dist-cjs",
|
|
725
|
+
"build:esm": "NODE_OPTIONS=--max-old-space-size=4096 tsc --outDir dist/ && rimraf dist/tests dist/**/tests",
|
|
726
|
+
"build:cjs": "NODE_OPTIONS=--max-old-space-size=4096 tsc --outDir dist-cjs/ -p tsconfig.cjs.json && node scripts/move-cjs-to-dist.js && rimraf dist-cjs",
|
|
703
727
|
"build:watch": "node scripts/create-entrypoints.js && tsc --outDir dist/ --watch",
|
|
704
|
-
"lint": "eslint src && dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
|
|
728
|
+
"lint": "NODE_OPTIONS=--max-old-space-size=4096 eslint src && dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
|
|
705
729
|
"lint:fix": "yarn lint --fix",
|
|
706
730
|
"precommit": "lint-staged",
|
|
707
|
-
"clean": "rimraf dist/ && node scripts/create-entrypoints.js pre",
|
|
731
|
+
"clean": "rimraf dist/ && NODE_OPTIONS=--max-old-space-size=4096 node scripts/create-entrypoints.js pre",
|
|
708
732
|
"prepack": "yarn build",
|
|
709
733
|
"release": "release-it --only-version --config .release-it.json",
|
|
710
734
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
|
|
@@ -734,7 +758,7 @@
|
|
|
734
758
|
"@elastic/elasticsearch": "^8.4.0",
|
|
735
759
|
"@faker-js/faker": "^7.6.0",
|
|
736
760
|
"@getmetal/metal-sdk": "^4.0.0",
|
|
737
|
-
"@getzep/zep-js": "^0.
|
|
761
|
+
"@getzep/zep-js": "^0.8.0",
|
|
738
762
|
"@gomomento/sdk": "^1.41.2",
|
|
739
763
|
"@gomomento/sdk-core": "^1.41.2",
|
|
740
764
|
"@google-ai/generativelanguage": "^0.2.1",
|
|
@@ -788,6 +812,9 @@
|
|
|
788
812
|
"cassandra-driver": "^4.6.4",
|
|
789
813
|
"cheerio": "^1.0.0-rc.12",
|
|
790
814
|
"chromadb": "^1.5.3",
|
|
815
|
+
"closevector-common": "0.1.0-alpha.1",
|
|
816
|
+
"closevector-node": "0.1.0-alpha.10",
|
|
817
|
+
"closevector-web": "0.1.0-alpha.15",
|
|
791
818
|
"cohere-ai": ">=6.0.0",
|
|
792
819
|
"d3-dsv": "^2.0.0",
|
|
793
820
|
"dotenv": "^16.0.3",
|
|
@@ -799,7 +826,7 @@
|
|
|
799
826
|
"eslint-plugin-import": "^2.27.5",
|
|
800
827
|
"eslint-plugin-no-instanceof": "^1.0.1",
|
|
801
828
|
"eslint-plugin-prettier": "^4.2.1",
|
|
802
|
-
"faiss-node": "^0.
|
|
829
|
+
"faiss-node": "^0.5.1",
|
|
803
830
|
"fast-xml-parser": "^4.2.7",
|
|
804
831
|
"firebase-admin": "^11.9.0",
|
|
805
832
|
"google-auth-library": "^8.9.0",
|
|
@@ -812,7 +839,7 @@
|
|
|
812
839
|
"jest": "^29.5.0",
|
|
813
840
|
"jest-environment-node": "^29.6.4",
|
|
814
841
|
"jsdom": "^22.1.0",
|
|
815
|
-
"llmonitor": "^0.5.
|
|
842
|
+
"llmonitor": "^0.5.8",
|
|
816
843
|
"lodash": "^4.17.21",
|
|
817
844
|
"mammoth": "^1.5.1",
|
|
818
845
|
"ml-matrix": "^6.10.4",
|
|
@@ -825,7 +852,7 @@
|
|
|
825
852
|
"peggy": "^3.0.2",
|
|
826
853
|
"pg": "^8.11.0",
|
|
827
854
|
"pg-copy-streams": "^6.0.5",
|
|
828
|
-
"pickleparser": "^0.1
|
|
855
|
+
"pickleparser": "^0.2.1",
|
|
829
856
|
"playwright": "^1.32.1",
|
|
830
857
|
"portkey-ai": "^0.1.11",
|
|
831
858
|
"prettier": "^2.8.3",
|
|
@@ -865,7 +892,7 @@
|
|
|
865
892
|
"@cloudflare/ai": "^1.0.12",
|
|
866
893
|
"@elastic/elasticsearch": "^8.4.0",
|
|
867
894
|
"@getmetal/metal-sdk": "*",
|
|
868
|
-
"@getzep/zep-js": "^0.
|
|
895
|
+
"@getzep/zep-js": "^0.8.0",
|
|
869
896
|
"@gomomento/sdk": "^1.41.2",
|
|
870
897
|
"@gomomento/sdk-core": "^1.41.2",
|
|
871
898
|
"@gomomento/sdk-web": "^1.41.2",
|
|
@@ -900,10 +927,13 @@
|
|
|
900
927
|
"cassandra-driver": "^4.6.4",
|
|
901
928
|
"cheerio": "^1.0.0-rc.12",
|
|
902
929
|
"chromadb": "*",
|
|
930
|
+
"closevector-common": "0.1.0-alpha.1",
|
|
931
|
+
"closevector-node": "0.1.0-alpha.10",
|
|
932
|
+
"closevector-web": "0.1.0-alpha.16",
|
|
903
933
|
"cohere-ai": ">=6.0.0",
|
|
904
934
|
"d3-dsv": "^2.0.0",
|
|
905
935
|
"epub2": "^3.0.1",
|
|
906
|
-
"faiss-node": "^0.
|
|
936
|
+
"faiss-node": "^0.5.1",
|
|
907
937
|
"fast-xml-parser": "^4.2.7",
|
|
908
938
|
"firebase-admin": "^11.9.0",
|
|
909
939
|
"google-auth-library": "^8.9.0",
|
|
@@ -913,7 +943,7 @@
|
|
|
913
943
|
"ignore": "^5.2.0",
|
|
914
944
|
"ioredis": "^5.3.2",
|
|
915
945
|
"jsdom": "*",
|
|
916
|
-
"llmonitor": "
|
|
946
|
+
"llmonitor": "^0.5.8",
|
|
917
947
|
"lodash": "^4.17.21",
|
|
918
948
|
"mammoth": "*",
|
|
919
949
|
"mongodb": "^5.2.0",
|
|
@@ -925,7 +955,7 @@
|
|
|
925
955
|
"peggy": "^3.0.2",
|
|
926
956
|
"pg": "^8.11.0",
|
|
927
957
|
"pg-copy-streams": "^6.0.5",
|
|
928
|
-
"pickleparser": "^0.1
|
|
958
|
+
"pickleparser": "^0.2.1",
|
|
929
959
|
"playwright": "^1.32.1",
|
|
930
960
|
"portkey-ai": "^0.1.11",
|
|
931
961
|
"puppeteer": "^19.7.2",
|
|
@@ -1091,6 +1121,15 @@
|
|
|
1091
1121
|
"chromadb": {
|
|
1092
1122
|
"optional": true
|
|
1093
1123
|
},
|
|
1124
|
+
"closevector-common": {
|
|
1125
|
+
"optional": true
|
|
1126
|
+
},
|
|
1127
|
+
"closevector-node": {
|
|
1128
|
+
"optional": true
|
|
1129
|
+
},
|
|
1130
|
+
"closevector-web": {
|
|
1131
|
+
"optional": true
|
|
1132
|
+
},
|
|
1094
1133
|
"cohere-ai": {
|
|
1095
1134
|
"optional": true
|
|
1096
1135
|
},
|
|
@@ -1465,6 +1504,11 @@
|
|
|
1465
1504
|
"import": "./llms/aleph_alpha.js",
|
|
1466
1505
|
"require": "./llms/aleph_alpha.cjs"
|
|
1467
1506
|
},
|
|
1507
|
+
"./llms/cloudflare_workersai": {
|
|
1508
|
+
"types": "./llms/cloudflare_workersai.d.ts",
|
|
1509
|
+
"import": "./llms/cloudflare_workersai.js",
|
|
1510
|
+
"require": "./llms/cloudflare_workersai.cjs"
|
|
1511
|
+
},
|
|
1468
1512
|
"./llms/cohere": {
|
|
1469
1513
|
"types": "./llms/cohere.d.ts",
|
|
1470
1514
|
"import": "./llms/cohere.js",
|
|
@@ -1540,6 +1584,11 @@
|
|
|
1540
1584
|
"import": "./llms/yandex.js",
|
|
1541
1585
|
"require": "./llms/yandex.cjs"
|
|
1542
1586
|
},
|
|
1587
|
+
"./llms/fake": {
|
|
1588
|
+
"types": "./llms/fake.d.ts",
|
|
1589
|
+
"import": "./llms/fake.js",
|
|
1590
|
+
"require": "./llms/fake.cjs"
|
|
1591
|
+
},
|
|
1543
1592
|
"./prompts": {
|
|
1544
1593
|
"types": "./prompts.d.ts",
|
|
1545
1594
|
"import": "./prompts.js",
|
|
@@ -1580,6 +1629,16 @@
|
|
|
1580
1629
|
"import": "./vectorstores/cloudflare_vectorize.js",
|
|
1581
1630
|
"require": "./vectorstores/cloudflare_vectorize.cjs"
|
|
1582
1631
|
},
|
|
1632
|
+
"./vectorstores/closevector/web": {
|
|
1633
|
+
"types": "./vectorstores/closevector/web.d.ts",
|
|
1634
|
+
"import": "./vectorstores/closevector/web.js",
|
|
1635
|
+
"require": "./vectorstores/closevector/web.cjs"
|
|
1636
|
+
},
|
|
1637
|
+
"./vectorstores/closevector/node": {
|
|
1638
|
+
"types": "./vectorstores/closevector/node.d.ts",
|
|
1639
|
+
"import": "./vectorstores/closevector/node.js",
|
|
1640
|
+
"require": "./vectorstores/closevector/node.cjs"
|
|
1641
|
+
},
|
|
1583
1642
|
"./vectorstores/chroma": {
|
|
1584
1643
|
"types": "./vectorstores/chroma.d.ts",
|
|
1585
1644
|
"import": "./vectorstores/chroma.js",
|
|
@@ -1970,6 +2029,11 @@
|
|
|
1970
2029
|
"import": "./chat_models/bedrock.js",
|
|
1971
2030
|
"require": "./chat_models/bedrock.cjs"
|
|
1972
2031
|
},
|
|
2032
|
+
"./chat_models/cloudflare_workersai": {
|
|
2033
|
+
"types": "./chat_models/cloudflare_workersai.d.ts",
|
|
2034
|
+
"import": "./chat_models/cloudflare_workersai.js",
|
|
2035
|
+
"require": "./chat_models/cloudflare_workersai.cjs"
|
|
2036
|
+
},
|
|
1973
2037
|
"./chat_models/googlevertexai": {
|
|
1974
2038
|
"types": "./chat_models/googlevertexai.d.ts",
|
|
1975
2039
|
"import": "./chat_models/googlevertexai.js",
|
|
@@ -2005,6 +2069,16 @@
|
|
|
2005
2069
|
"import": "./chat_models/minimax.js",
|
|
2006
2070
|
"require": "./chat_models/minimax.cjs"
|
|
2007
2071
|
},
|
|
2072
|
+
"./chat_models/yandex": {
|
|
2073
|
+
"types": "./chat_models/yandex.d.ts",
|
|
2074
|
+
"import": "./chat_models/yandex.js",
|
|
2075
|
+
"require": "./chat_models/yandex.cjs"
|
|
2076
|
+
},
|
|
2077
|
+
"./chat_models/fake": {
|
|
2078
|
+
"types": "./chat_models/fake.d.ts",
|
|
2079
|
+
"import": "./chat_models/fake.js",
|
|
2080
|
+
"require": "./chat_models/fake.cjs"
|
|
2081
|
+
},
|
|
2008
2082
|
"./schema": {
|
|
2009
2083
|
"types": "./schema.d.ts",
|
|
2010
2084
|
"import": "./schema.js",
|
|
@@ -2380,6 +2454,11 @@
|
|
|
2380
2454
|
"import": "./experimental/hubs/makersuite/googlemakersuitehub.js",
|
|
2381
2455
|
"require": "./experimental/hubs/makersuite/googlemakersuitehub.cjs"
|
|
2382
2456
|
},
|
|
2457
|
+
"./experimental/chains/violation_of_expectations": {
|
|
2458
|
+
"types": "./experimental/chains/violation_of_expectations.d.ts",
|
|
2459
|
+
"import": "./experimental/chains/violation_of_expectations.js",
|
|
2460
|
+
"require": "./experimental/chains/violation_of_expectations.cjs"
|
|
2461
|
+
},
|
|
2383
2462
|
"./evaluation": {
|
|
2384
2463
|
"types": "./evaluation.d.ts",
|
|
2385
2464
|
"import": "./evaluation.js",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/vectorstores/closevector/node.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/vectorstores/closevector/node.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/vectorstores/closevector/node.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('../../dist/vectorstores/closevector/web.cjs');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/vectorstores/closevector/web.js'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../../dist/vectorstores/closevector/web.js'
|