-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
5730 lines (5212 loc) · 184 KB
/
yarn.lock
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8
languageName: node
linkType: hard
"@anthropic-ai/sdk@npm:^0.9.1":
version: 0.9.1
resolution: "@anthropic-ai/sdk@npm:0.9.1"
dependencies:
"@types/node": ^18.11.18
"@types/node-fetch": ^2.6.4
abort-controller: ^3.0.0
agentkeepalive: ^4.2.1
digest-fetch: ^1.3.0
form-data-encoder: 1.7.2
formdata-node: ^4.3.2
node-fetch: ^2.6.7
web-streams-polyfill: ^3.2.1
checksum: 0ec50abc0ffc694d903d516f4ac110aafa3a588438791851dd2c3d220da49ceaf2723e218b7f1bc13e737fee1561b18ad8c3b4cc4347e8212131f69637216413
languageName: node
linkType: hard
"@babel/runtime@npm:^7.23.2":
version: 7.23.7
resolution: "@babel/runtime@npm:7.23.7"
dependencies:
regenerator-runtime: ^0.14.0
checksum: eba85bd24d250abb5ae19b16cffc15a54d3894d8228ace40fa4c0e2f1938f28b38ad3e3430ebff9a1ef511eeb8c527e36044ac19076d6deafa52cef35d8624b9
languageName: node
linkType: hard
"@eslint-community/eslint-utils@npm:^4.2.0":
version: 4.4.0
resolution: "@eslint-community/eslint-utils@npm:4.4.0"
dependencies:
eslint-visitor-keys: ^3.3.0
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
languageName: node
linkType: hard
"@eslint-community/regexpp@npm:^4.6.1":
version: 4.10.0
resolution: "@eslint-community/regexpp@npm:4.10.0"
checksum: 2a6e345429ea8382aaaf3a61f865cae16ed44d31ca917910033c02dc00d505d939f10b81e079fa14d43b51499c640138e153b7e40743c4c094d9df97d4e56f7b
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^2.1.1":
version: 2.1.4
resolution: "@eslint/eslintrc@npm:2.1.4"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.6.0
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: 10957c7592b20ca0089262d8c2a8accbad14b4f6507e35416c32ee6b4dbf9cad67dfb77096bbd405405e9ada2b107f3797fe94362e1c55e0b09d6e90dd149127
languageName: node
linkType: hard
"@eslint/js@npm:^8.46.0":
version: 8.56.0
resolution: "@eslint/js@npm:8.56.0"
checksum: 5804130574ef810207bdf321c265437814e7a26f4e6fac9b496de3206afd52f533e09ec002a3be06cd9adcc9da63e727f1883938e663c4e4751c007d5b58e539
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.10":
version: 0.11.13
resolution: "@humanwhocodes/config-array@npm:0.11.13"
dependencies:
"@humanwhocodes/object-schema": ^2.0.1
debug: ^4.1.1
minimatch: ^3.0.5
checksum: f8ea57b0d7ed7f2d64cd3944654976829d9da91c04d9c860e18804729a33f7681f78166ef4c761850b8c324d362f7d53f14c5c44907a6b38b32c703ff85e4805
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^2.0.1":
version: 2.0.1
resolution: "@humanwhocodes/object-schema@npm:2.0.1"
checksum: 24929487b1ed48795d2f08346a0116cc5ee4634848bce64161fb947109352c562310fd159fc64dda0e8b853307f5794605191a9547f7341158559ca3c8262a45
languageName: node
linkType: hard
"@isaacs/cliui@npm:^8.0.2":
version: 8.0.2
resolution: "@isaacs/cliui@npm:8.0.2"
dependencies:
string-width: ^5.1.2
string-width-cjs: "npm:string-width@^4.2.0"
strip-ansi: ^7.0.1
strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
wrap-ansi: ^8.1.0
wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
checksum: 4a473b9b32a7d4d3cfb7a614226e555091ff0c5a29a1734c28c72a182c2f6699b26fc6b5c2131dfd841e86b185aea714c72201d7c98c2fba5f17709333a67aeb
languageName: node
linkType: hard
"@jridgewell/gen-mapping@npm:^0.3.2":
version: 0.3.3
resolution: "@jridgewell/gen-mapping@npm:0.3.3"
dependencies:
"@jridgewell/set-array": ^1.0.1
"@jridgewell/sourcemap-codec": ^1.4.10
"@jridgewell/trace-mapping": ^0.3.9
checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab
languageName: node
linkType: hard
"@jridgewell/resolve-uri@npm:^3.1.0":
version: 3.1.1
resolution: "@jridgewell/resolve-uri@npm:3.1.1"
checksum: f5b441fe7900eab4f9155b3b93f9800a916257f4e8563afbcd3b5a5337b55e52bd8ae6735453b1b745457d9f6cdb16d74cd6220bbdd98cf153239e13f6cbb653
languageName: node
linkType: hard
"@jridgewell/set-array@npm:^1.0.1":
version: 1.1.2
resolution: "@jridgewell/set-array@npm:1.1.2"
checksum: 69a84d5980385f396ff60a175f7177af0b8da4ddb81824cb7016a9ef914eee9806c72b6b65942003c63f7983d4f39a5c6c27185bbca88eb4690b62075602e28e
languageName: node
linkType: hard
"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
version: 1.4.15
resolution: "@jridgewell/sourcemap-codec@npm:1.4.15"
checksum: b881c7e503db3fc7f3c1f35a1dd2655a188cc51a3612d76efc8a6eb74728bef5606e6758ee77423e564092b4a518aba569bbb21c9bac5ab7a35b0c6ae7e344c8
languageName: node
linkType: hard
"@jridgewell/trace-mapping@npm:^0.3.9":
version: 0.3.20
resolution: "@jridgewell/trace-mapping@npm:0.3.20"
dependencies:
"@jridgewell/resolve-uri": ^3.1.0
"@jridgewell/sourcemap-codec": ^1.4.14
checksum: cd1a7353135f385909468ff0cf20bdd37e59f2ee49a13a966dedf921943e222082c583ade2b579ff6cd0d8faafcb5461f253e1bf2a9f48fec439211fdbe788f5
languageName: node
linkType: hard
"@langchain/community@npm:^0.0.39":
version: 0.0.39
resolution: "@langchain/community@npm:0.0.39"
dependencies:
"@langchain/core": ~0.1.44
"@langchain/openai": ~0.0.19
flat: ^5.0.2
langsmith: ~0.1.1
uuid: ^9.0.0
zod: ^3.22.3
peerDependencies:
"@aws-crypto/sha256-js": ^5.0.0
"@aws-sdk/client-bedrock-agent-runtime": ^3.485.0
"@aws-sdk/client-bedrock-runtime": ^3.422.0
"@aws-sdk/client-dynamodb": ^3.310.0
"@aws-sdk/client-kendra": ^3.352.0
"@aws-sdk/client-lambda": ^3.310.0
"@aws-sdk/client-sagemaker-runtime": ^3.310.0
"@aws-sdk/client-sfn": ^3.310.0
"@aws-sdk/credential-provider-node": ^3.388.0
"@azure/search-documents": ^12.0.0
"@clickhouse/client": ^0.2.5
"@cloudflare/ai": "*"
"@datastax/astra-db-ts": ^0.1.4
"@elastic/elasticsearch": ^8.4.0
"@getmetal/metal-sdk": "*"
"@getzep/zep-js": ^0.9.0
"@gomomento/sdk": ^1.51.1
"@gomomento/sdk-core": ^1.51.1
"@google-ai/generativelanguage": ^0.2.1
"@gradientai/nodejs-sdk": ^1.2.0
"@huggingface/inference": ^2.6.4
"@mozilla/readability": "*"
"@opensearch-project/opensearch": "*"
"@pinecone-database/pinecone": "*"
"@planetscale/database": ^1.8.0
"@qdrant/js-client-rest": ^1.2.0
"@raycast/api": ^1.55.2
"@rockset/client": ^0.9.1
"@smithy/eventstream-codec": ^2.0.5
"@smithy/protocol-http": ^3.0.6
"@smithy/signature-v4": ^2.0.10
"@smithy/util-utf8": ^2.0.0
"@supabase/postgrest-js": ^1.1.1
"@supabase/supabase-js": ^2.10.0
"@tensorflow-models/universal-sentence-encoder": "*"
"@tensorflow/tfjs-converter": "*"
"@tensorflow/tfjs-core": "*"
"@upstash/redis": ^1.20.6
"@upstash/vector": ^1.0.2
"@vercel/kv": ^0.2.3
"@vercel/postgres": ^0.5.0
"@writerai/writer-sdk": ^0.40.2
"@xata.io/client": ^0.28.0
"@xenova/transformers": ^2.5.4
"@zilliz/milvus2-sdk-node": ">=2.2.7"
better-sqlite3: ^9.4.0
cassandra-driver: ^4.7.2
chromadb: "*"
closevector-common: 0.1.3
closevector-node: 0.1.6
closevector-web: 0.1.6
cohere-ai: "*"
convex: ^1.3.1
discord.js: ^14.14.1
dria: ^0.0.3
faiss-node: ^0.5.1
firebase-admin: ^11.9.0 || ^12.0.0
google-auth-library: ^8.9.0
googleapis: ^126.0.1
hnswlib-node: ^1.4.2
html-to-text: ^9.0.5
ioredis: ^5.3.2
jsdom: "*"
jsonwebtoken: ^9.0.2
llmonitor: ^0.5.9
lodash: ^4.17.21
lunary: ^0.6.11
mongodb: ">=5.2.0"
mysql2: ^3.3.3
neo4j-driver: "*"
node-llama-cpp: "*"
pg: ^8.11.0
pg-copy-streams: ^6.0.5
pickleparser: ^0.2.1
portkey-ai: ^0.1.11
redis: "*"
replicate: ^0.18.0
typeorm: ^0.3.12
typesense: ^1.5.3
usearch: ^1.1.1
vectordb: ^0.1.4
voy-search: 0.6.2
weaviate-ts-client: "*"
web-auth-library: ^1.0.3
ws: ^8.14.2
peerDependenciesMeta:
"@aws-crypto/sha256-js":
optional: true
"@aws-sdk/client-bedrock-agent-runtime":
optional: true
"@aws-sdk/client-bedrock-runtime":
optional: true
"@aws-sdk/client-dynamodb":
optional: true
"@aws-sdk/client-kendra":
optional: true
"@aws-sdk/client-lambda":
optional: true
"@aws-sdk/client-sagemaker-runtime":
optional: true
"@aws-sdk/client-sfn":
optional: true
"@aws-sdk/credential-provider-node":
optional: true
"@azure/search-documents":
optional: true
"@clickhouse/client":
optional: true
"@cloudflare/ai":
optional: true
"@datastax/astra-db-ts":
optional: true
"@elastic/elasticsearch":
optional: true
"@getmetal/metal-sdk":
optional: true
"@getzep/zep-js":
optional: true
"@gomomento/sdk":
optional: true
"@gomomento/sdk-core":
optional: true
"@google-ai/generativelanguage":
optional: true
"@gradientai/nodejs-sdk":
optional: true
"@huggingface/inference":
optional: true
"@mozilla/readability":
optional: true
"@opensearch-project/opensearch":
optional: true
"@pinecone-database/pinecone":
optional: true
"@planetscale/database":
optional: true
"@qdrant/js-client-rest":
optional: true
"@raycast/api":
optional: true
"@rockset/client":
optional: true
"@smithy/eventstream-codec":
optional: true
"@smithy/protocol-http":
optional: true
"@smithy/signature-v4":
optional: true
"@smithy/util-utf8":
optional: true
"@supabase/postgrest-js":
optional: true
"@supabase/supabase-js":
optional: true
"@tensorflow-models/universal-sentence-encoder":
optional: true
"@tensorflow/tfjs-converter":
optional: true
"@tensorflow/tfjs-core":
optional: true
"@upstash/redis":
optional: true
"@upstash/vector":
optional: true
"@vercel/kv":
optional: true
"@vercel/postgres":
optional: true
"@writerai/writer-sdk":
optional: true
"@xata.io/client":
optional: true
"@xenova/transformers":
optional: true
"@zilliz/milvus2-sdk-node":
optional: true
better-sqlite3:
optional: true
cassandra-driver:
optional: true
chromadb:
optional: true
closevector-common:
optional: true
closevector-node:
optional: true
closevector-web:
optional: true
cohere-ai:
optional: true
convex:
optional: true
discord.js:
optional: true
dria:
optional: true
faiss-node:
optional: true
firebase-admin:
optional: true
google-auth-library:
optional: true
googleapis:
optional: true
hnswlib-node:
optional: true
html-to-text:
optional: true
ioredis:
optional: true
jsdom:
optional: true
jsonwebtoken:
optional: true
llmonitor:
optional: true
lodash:
optional: true
lunary:
optional: true
mongodb:
optional: true
mysql2:
optional: true
neo4j-driver:
optional: true
node-llama-cpp:
optional: true
pg:
optional: true
pg-copy-streams:
optional: true
pickleparser:
optional: true
portkey-ai:
optional: true
redis:
optional: true
replicate:
optional: true
typeorm:
optional: true
typesense:
optional: true
usearch:
optional: true
vectordb:
optional: true
voy-search:
optional: true
weaviate-ts-client:
optional: true
web-auth-library:
optional: true
ws:
optional: true
checksum: 979753b8b7c7bba50d505618b5b4ed314a7fabee4bb1a271538940e6b7f67be0311aed00598ececfc9ec0fa47dec3a4e6afb097a8bc0d0eeec513efb840bce85
languageName: node
linkType: hard
"@langchain/community@npm:~0.0.36":
version: 0.0.36
resolution: "@langchain/community@npm:0.0.36"
dependencies:
"@langchain/core": ~0.1.44
"@langchain/openai": ~0.0.19
flat: ^5.0.2
langsmith: ~0.1.1
uuid: ^9.0.0
zod: ^3.22.3
peerDependencies:
"@aws-crypto/sha256-js": ^5.0.0
"@aws-sdk/client-bedrock-agent-runtime": ^3.485.0
"@aws-sdk/client-bedrock-runtime": ^3.422.0
"@aws-sdk/client-dynamodb": ^3.310.0
"@aws-sdk/client-kendra": ^3.352.0
"@aws-sdk/client-lambda": ^3.310.0
"@aws-sdk/client-sagemaker-runtime": ^3.310.0
"@aws-sdk/client-sfn": ^3.310.0
"@aws-sdk/credential-provider-node": ^3.388.0
"@azure/search-documents": ^12.0.0
"@clickhouse/client": ^0.2.5
"@cloudflare/ai": "*"
"@datastax/astra-db-ts": ^0.1.4
"@elastic/elasticsearch": ^8.4.0
"@getmetal/metal-sdk": "*"
"@getzep/zep-js": ^0.9.0
"@gomomento/sdk": ^1.51.1
"@gomomento/sdk-core": ^1.51.1
"@google-ai/generativelanguage": ^0.2.1
"@gradientai/nodejs-sdk": ^1.2.0
"@huggingface/inference": ^2.6.4
"@mozilla/readability": "*"
"@opensearch-project/opensearch": "*"
"@pinecone-database/pinecone": "*"
"@planetscale/database": ^1.8.0
"@qdrant/js-client-rest": ^1.2.0
"@raycast/api": ^1.55.2
"@rockset/client": ^0.9.1
"@smithy/eventstream-codec": ^2.0.5
"@smithy/protocol-http": ^3.0.6
"@smithy/signature-v4": ^2.0.10
"@smithy/util-utf8": ^2.0.0
"@supabase/postgrest-js": ^1.1.1
"@supabase/supabase-js": ^2.10.0
"@tensorflow-models/universal-sentence-encoder": "*"
"@tensorflow/tfjs-converter": "*"
"@tensorflow/tfjs-core": "*"
"@upstash/redis": ^1.20.6
"@upstash/vector": ^1.0.2
"@vercel/kv": ^0.2.3
"@vercel/postgres": ^0.5.0
"@writerai/writer-sdk": ^0.40.2
"@xata.io/client": ^0.28.0
"@xenova/transformers": ^2.5.4
"@zilliz/milvus2-sdk-node": ">=2.2.7"
better-sqlite3: ^9.4.0
cassandra-driver: ^4.7.2
chromadb: "*"
closevector-common: 0.1.3
closevector-node: 0.1.6
closevector-web: 0.1.6
cohere-ai: "*"
convex: ^1.3.1
discord.js: ^14.14.1
dria: ^0.0.3
faiss-node: ^0.5.1
firebase-admin: ^11.9.0 || ^12.0.0
google-auth-library: ^8.9.0
googleapis: ^126.0.1
hnswlib-node: ^1.4.2
html-to-text: ^9.0.5
ioredis: ^5.3.2
jsdom: "*"
llmonitor: ^0.5.9
lodash: ^4.17.21
lunary: ^0.6.11
mongodb: ">=5.2.0"
mysql2: ^3.3.3
neo4j-driver: "*"
node-llama-cpp: "*"
pg: ^8.11.0
pg-copy-streams: ^6.0.5
pickleparser: ^0.2.1
portkey-ai: ^0.1.11
redis: "*"
replicate: ^0.18.0
typeorm: ^0.3.12
typesense: ^1.5.3
usearch: ^1.1.1
vectordb: ^0.1.4
voy-search: 0.6.2
weaviate-ts-client: "*"
web-auth-library: ^1.0.3
ws: ^8.14.2
peerDependenciesMeta:
"@aws-crypto/sha256-js":
optional: true
"@aws-sdk/client-bedrock-agent-runtime":
optional: true
"@aws-sdk/client-bedrock-runtime":
optional: true
"@aws-sdk/client-dynamodb":
optional: true
"@aws-sdk/client-kendra":
optional: true
"@aws-sdk/client-lambda":
optional: true
"@aws-sdk/client-sagemaker-runtime":
optional: true
"@aws-sdk/client-sfn":
optional: true
"@aws-sdk/credential-provider-node":
optional: true
"@azure/search-documents":
optional: true
"@clickhouse/client":
optional: true
"@cloudflare/ai":
optional: true
"@datastax/astra-db-ts":
optional: true
"@elastic/elasticsearch":
optional: true
"@getmetal/metal-sdk":
optional: true
"@getzep/zep-js":
optional: true
"@gomomento/sdk":
optional: true
"@gomomento/sdk-core":
optional: true
"@google-ai/generativelanguage":
optional: true
"@gradientai/nodejs-sdk":
optional: true
"@huggingface/inference":
optional: true
"@mozilla/readability":
optional: true
"@opensearch-project/opensearch":
optional: true
"@pinecone-database/pinecone":
optional: true
"@planetscale/database":
optional: true
"@qdrant/js-client-rest":
optional: true
"@raycast/api":
optional: true
"@rockset/client":
optional: true
"@smithy/eventstream-codec":
optional: true
"@smithy/protocol-http":
optional: true
"@smithy/signature-v4":
optional: true
"@smithy/util-utf8":
optional: true
"@supabase/postgrest-js":
optional: true
"@supabase/supabase-js":
optional: true
"@tensorflow-models/universal-sentence-encoder":
optional: true
"@tensorflow/tfjs-converter":
optional: true
"@tensorflow/tfjs-core":
optional: true
"@upstash/redis":
optional: true
"@upstash/vector":
optional: true
"@vercel/kv":
optional: true
"@vercel/postgres":
optional: true
"@writerai/writer-sdk":
optional: true
"@xata.io/client":
optional: true
"@xenova/transformers":
optional: true
"@zilliz/milvus2-sdk-node":
optional: true
better-sqlite3:
optional: true
cassandra-driver:
optional: true
chromadb:
optional: true
closevector-common:
optional: true
closevector-node:
optional: true
closevector-web:
optional: true
cohere-ai:
optional: true
convex:
optional: true
discord.js:
optional: true
dria:
optional: true
faiss-node:
optional: true
firebase-admin:
optional: true
google-auth-library:
optional: true
googleapis:
optional: true
hnswlib-node:
optional: true
html-to-text:
optional: true
ioredis:
optional: true
jsdom:
optional: true
llmonitor:
optional: true
lodash:
optional: true
lunary:
optional: true
mongodb:
optional: true
mysql2:
optional: true
neo4j-driver:
optional: true
node-llama-cpp:
optional: true
pg:
optional: true
pg-copy-streams:
optional: true
pickleparser:
optional: true
portkey-ai:
optional: true
redis:
optional: true
replicate:
optional: true
typeorm:
optional: true
typesense:
optional: true
usearch:
optional: true
vectordb:
optional: true
voy-search:
optional: true
weaviate-ts-client:
optional: true
web-auth-library:
optional: true
ws:
optional: true
checksum: cbe73c2485d684417f545e65caa418a7090b49920156a1603b20d6dab26bea3dccec57757d2e22460db60c13f314163db60a3ee67bd22972c50463d59f478ba3
languageName: node
linkType: hard
"@langchain/core@npm:0.1.47":
version: 0.1.47
resolution: "@langchain/core@npm:0.1.47"
dependencies:
ansi-styles: ^5.0.0
camelcase: 6
decamelize: 1.2.0
js-tiktoken: ^1.0.8
langsmith: ~0.1.7
ml-distance: ^4.0.0
p-queue: ^6.6.2
p-retry: 4
uuid: ^9.0.0
zod: ^3.22.4
zod-to-json-schema: ^3.22.3
checksum: 05bcd2a8b63cab49b98df599d6077e5cf2c9840a2f345ada87c3cd8b0ac61fe4551dbbb759dd0d874619a75a0bdab2ca2e802374bcffb545d3368b059d56b225
languageName: node
linkType: hard
"@langchain/openai@npm:^0.0.20":
version: 0.0.20
resolution: "@langchain/openai@npm:0.0.20"
dependencies:
"@langchain/core": ~0.1.45
js-tiktoken: ^1.0.7
openai: ^4.26.0
zod: ^3.22.4
zod-to-json-schema: ^3.22.3
checksum: deeb39e0633f7b096a72f9f0d5b4c6101d29fe0ad4a5693cf2e4d204b77acef4fea2d1b47687117c5bc9b172022149152c4b65d46886b32ababdd14b06761966
languageName: node
linkType: hard
"@langchain/openai@npm:~0.0.19":
version: 0.0.19
resolution: "@langchain/openai@npm:0.0.19"
dependencies:
"@langchain/core": ~0.1.44
js-tiktoken: ^1.0.7
openai: ^4.26.0
zod: ^3.22.4
zod-to-json-schema: ^3.22.3
checksum: d1e44796bfd9b4eeb831f7f27e9020cb019ae11bf7ce0c550eb08acaddbabc8a751d258cf9c7da47e86b5212006fea20ccda19b8e68cd47a9ca61c221c8227ee
languageName: node
linkType: hard
"@next/bundle-analyzer@npm:^13.4.19":
version: 13.5.6
resolution: "@next/bundle-analyzer@npm:13.5.6"
dependencies:
webpack-bundle-analyzer: 4.7.0
checksum: 4308abc7f6ad35e3f3687af998313ca57749c08215bb1f2f0f2af1551badb8427800b462da408ef8d3dc60a51d547b9d175e7eacf297a5f8f7383441a926d453
languageName: node
linkType: hard
"@next/env@npm:14.0.1":
version: 14.0.1
resolution: "@next/env@npm:14.0.1"
checksum: 1fab6732f877c3702fce12396f16046f9b7a59c70b0d0b3db713995eed431706d12175530709d21c613682865ce82ef965a5719a43d6bc84142462a8ed558cda
languageName: node
linkType: hard
"@next/eslint-plugin-next@npm:13.4.12":
version: 13.4.12
resolution: "@next/eslint-plugin-next@npm:13.4.12"
dependencies:
glob: 7.1.7
checksum: a20cf430efe7602b819e69d826c33659a9c2cfa7c6162f63d91b607ff6ac9da0e79ff27f38cebd79117500640329bd107521b4874e6a2d009ddafab762885c82
languageName: node
linkType: hard
"@next/swc-darwin-arm64@npm:14.0.1":
version: 14.0.1
resolution: "@next/swc-darwin-arm64@npm:14.0.1"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@next/swc-darwin-x64@npm:14.0.1":
version: 14.0.1
resolution: "@next/swc-darwin-x64@npm:14.0.1"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@next/swc-linux-arm64-gnu@npm:14.0.1":
version: 14.0.1
resolution: "@next/swc-linux-arm64-gnu@npm:14.0.1"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-arm64-musl@npm:14.0.1":
version: 14.0.1
resolution: "@next/swc-linux-arm64-musl@npm:14.0.1"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@next/swc-linux-x64-gnu@npm:14.0.1":
version: 14.0.1
resolution: "@next/swc-linux-x64-gnu@npm:14.0.1"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@next/swc-linux-x64-musl@npm:14.0.1":
version: 14.0.1
resolution: "@next/swc-linux-x64-musl@npm:14.0.1"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@next/swc-win32-arm64-msvc@npm:14.0.1":
version: 14.0.1
resolution: "@next/swc-win32-arm64-msvc@npm:14.0.1"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@next/swc-win32-ia32-msvc@npm:14.0.1":
version: 14.0.1
resolution: "@next/swc-win32-ia32-msvc@npm:14.0.1"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
"@next/swc-win32-x64-msvc@npm:14.0.1":
version: 14.0.1
resolution: "@next/swc-win32-x64-msvc@npm:14.0.1"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
dependencies:
"@nodelib/fs.stat": 2.0.5
run-parallel: ^1.1.9
checksum: a970d595bd23c66c880e0ef1817791432dbb7acbb8d44b7e7d0e7a22f4521260d4a83f7f9fd61d44fda4610105577f8f58a60718105fb38352baed612fd79e59
languageName: node
linkType: hard
"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
version: 2.0.5
resolution: "@nodelib/fs.stat@npm:2.0.5"
checksum: 012480b5ca9d97bff9261571dbbec7bbc6033f69cc92908bc1ecfad0792361a5a1994bc48674b9ef76419d056a03efadfce5a6cf6dbc0a36559571a7a483f6f0
languageName: node
linkType: hard
"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
"@nodelib/fs.scandir": 2.1.5
fastq: ^1.6.0
checksum: 190c643f156d8f8f277bf2a6078af1ffde1fd43f498f187c2db24d35b4b4b5785c02c7dc52e356497b9a1b65b13edc996de08de0b961c32844364da02986dc53
languageName: node
linkType: hard
"@npmcli/agent@npm:^2.0.0":
version: 2.2.0
resolution: "@npmcli/agent@npm:2.2.0"
dependencies:
agent-base: ^7.1.0
http-proxy-agent: ^7.0.0
https-proxy-agent: ^7.0.1
lru-cache: ^10.0.1
socks-proxy-agent: ^8.0.1
checksum: 3b25312edbdfaa4089af28e2d423b6f19838b945e47765b0c8174c1395c79d43c3ad6d23cb364b43f59fd3acb02c93e3b493f72ddbe3dfea04c86843a7311fc4
languageName: node
linkType: hard
"@npmcli/fs@npm:^3.1.0":
version: 3.1.0
resolution: "@npmcli/fs@npm:3.1.0"
dependencies:
semver: ^7.3.5
checksum: a50a6818de5fc557d0b0e6f50ec780a7a02ab8ad07e5ac8b16bf519e0ad60a144ac64f97d05c443c3367235d337182e1d012bbac0eb8dbae8dc7b40b193efd0e
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
checksum: 6ad6a00fc4f2f2cfc6bff76fb1d88b8ee20bc0601e18ebb01b6d4be583733a860239a521a7fbca73b612e66705078809483549d2b18f370eb346c5155c8e4a0f
languageName: node
linkType: hard
"@polka/url@npm:^1.0.0-next.20":
version: 1.0.0-next.24
resolution: "@polka/url@npm:1.0.0-next.24"
checksum: 00baec4458ac86ca27edf7ce807ccfad97cd1d4b67bdedaf3401a9e755757588f3331e891290d1deea52d88df2bf2387caf8d94a6835b614d5b37b638a688273
languageName: node
linkType: hard
"@rushstack/eslint-patch@npm:^1.1.3":
version: 1.6.1
resolution: "@rushstack/eslint-patch@npm:1.6.1"
checksum: d0c0fcc430dae71d9d929e593844aeaec8d326b1d6c27f18059e22dad486d8df43d6f0206b2021a0df789baf514642355bd86eae7a42c457b7b2f48a29bb0f53
languageName: node
linkType: hard
"@supabase/functions-js@npm:^2.1.5":
version: 2.1.5
resolution: "@supabase/functions-js@npm:2.1.5"
dependencies:
"@supabase/node-fetch": ^2.6.14
checksum: f2ab8636af8d982270b61631a5120369ca10db101b4298da71be892e5d91a8ddaddcf7f51079ad0fe24731a15892b21bd7dbe41b997da9d4b90e4326d09632c8
languageName: node
linkType: hard
"@supabase/gotrue-js@npm:^2.60.0":
version: 2.62.0
resolution: "@supabase/gotrue-js@npm:2.62.0"
dependencies:
"@supabase/node-fetch": ^2.6.14
checksum: 7df7078c7eb2b99658cc924fa41ae95305ba9e29fd8a56541adbe6901133a370ecda1d40553e27bcd8e782fb8f4a1c13b79ff4422af51bdcb5d614a10779340b
languageName: node
linkType: hard
"@supabase/node-fetch@npm:^2.6.14":
version: 2.6.15
resolution: "@supabase/node-fetch@npm:2.6.15"
dependencies:
whatwg-url: ^5.0.0
checksum: 9673b49236a56df49eb7ea5cb789cf4e8b1393069b84b4964ac052995e318a34872f428726d128f232139e17c3375a531e45e99edd3e96a25cce60d914b53879
languageName: node
linkType: hard
"@supabase/postgrest-js@npm:^1.8.6":
version: 1.9.0
resolution: "@supabase/postgrest-js@npm:1.9.0"
dependencies:
"@supabase/node-fetch": ^2.6.14
checksum: bf38139685901e9b96f97ac0bef6282352ebfd41c198174fd2109f109ee431f1eb2c8b68fa32c49fecb751a27358fd5790a03cda9bd4100bd16e2034aea7e419
languageName: node
linkType: hard
"@supabase/realtime-js@npm:^2.8.4":
version: 2.9.1
resolution: "@supabase/realtime-js@npm:2.9.1"
dependencies:
"@supabase/node-fetch": ^2.6.14
"@types/phoenix": ^1.5.4
ws: ^8.14.2
checksum: a1cf7e216251f8c17d0084c5185ee8f71979c4a8df818eca9404b6739463fa276b4b1ab4f648de0105426e7cc2aba3eadd317972a8d28ca2e31752ae91cfe370
languageName: node
linkType: hard
"@supabase/storage-js@npm:^2.5.4":
version: 2.5.5
resolution: "@supabase/storage-js@npm:2.5.5"
dependencies:
"@supabase/node-fetch": ^2.6.14
checksum: 4470499113c15e1124d99048eef0097c7ba431d728e351519ee26948775171d6c6bb41156f8ffb3860009b82b93809af01c9d075ece6000f783f59ce9fd00ee8
languageName: node
linkType: hard
"@supabase/supabase-js@npm:^2.32.0":
version: 2.39.1
resolution: "@supabase/supabase-js@npm:2.39.1"
dependencies:
"@supabase/functions-js": ^2.1.5
"@supabase/gotrue-js": ^2.60.0
"@supabase/node-fetch": ^2.6.14
"@supabase/postgrest-js": ^1.8.6
"@supabase/realtime-js": ^2.8.4
"@supabase/storage-js": ^2.5.4
checksum: b64bec00e7e2ba52f8da4b866c2d1aef06447bae203e310f9fc5d6c9e5b0f6c5d3002617a661b08425338639380372ce01ca807bf97e980d61876e7544840cc2
languageName: node
linkType: hard
"@swc/helpers@npm:0.5.2":
version: 0.5.2
resolution: "@swc/helpers@npm:0.5.2"
dependencies:
tslib: ^2.4.0
checksum: 51d7e3d8bd56818c49d6bfbd715f0dbeedc13cf723af41166e45c03e37f109336bbcb57a1f2020f4015957721aeb21e1a7fff281233d797ff7d3dd1f447fa258
languageName: node
linkType: hard
"@types/json5@npm:^0.0.29":
version: 0.0.29
resolution: "@types/json5@npm:0.0.29"
checksum: e60b153664572116dfea673c5bda7778dbff150498f44f998e34b5886d8afc47f16799280e4b6e241c0472aef1bc36add771c569c68fc5125fc2ae519a3eb9ac
languageName: node
linkType: hard
"@types/node-fetch@npm:^2.6.4":
version: 2.6.11