@synapseia-network/node 0.8.5

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 (40) hide show
  1. package/LICENSE +105 -0
  2. package/README.md +232 -0
  3. package/dist/bid-responder-Q725ZIUC.js +86 -0
  4. package/dist/bootstrap.js +22 -0
  5. package/dist/chain-info-lightweight-2UWAQZBF.js +303 -0
  6. package/dist/chat-stream-handler-BSHSGMFF.js +127 -0
  7. package/dist/chunk-2X7MSWD4.js +270 -0
  8. package/dist/chunk-3BHRQWSM.js +531 -0
  9. package/dist/chunk-5QFTU52A.js +442 -0
  10. package/dist/chunk-5ZAJBIAV.js +25 -0
  11. package/dist/chunk-7FLDR5NT.js +186 -0
  12. package/dist/chunk-C5XRYLYP.js +137 -0
  13. package/dist/chunk-D7ADMHK2.js +36 -0
  14. package/dist/chunk-DXUYWRO7.js +23 -0
  15. package/dist/chunk-F5UDK56Z.js +289 -0
  16. package/dist/chunk-NEHR6XY7.js +111 -0
  17. package/dist/chunk-NMJVODKH.js +453 -0
  18. package/dist/chunk-PRVT22SM.js +324 -0
  19. package/dist/chunk-T2ZRG5CX.js +1380 -0
  20. package/dist/chunk-V2L5SXTL.js +88 -0
  21. package/dist/chunk-XL2NJWFY.js +702 -0
  22. package/dist/embedding-C6GE3WVM.js +16 -0
  23. package/dist/hardware-ITQQJ5YI.js +37 -0
  24. package/dist/index.js +16836 -0
  25. package/dist/inference-server-CIGRJ36H.js +25 -0
  26. package/dist/local-cors-J6RWNMMD.js +44 -0
  27. package/dist/model-catalog-C53SDFMG.js +15 -0
  28. package/dist/model-discovery-LA6YMT3I.js +10 -0
  29. package/dist/ollama-XVXA3A37.js +9 -0
  30. package/dist/rewards-vault-cli-HW7H4EMD.js +147 -0
  31. package/dist/scripts/create_nodes.sh +6 -0
  32. package/dist/scripts/diloco_train.py +319 -0
  33. package/dist/scripts/train_lora.py +237 -0
  34. package/dist/scripts/train_micro.py +586 -0
  35. package/dist/trainer-HQMV2ZAR.js +21 -0
  36. package/package.json +128 -0
  37. package/scripts/create_nodes.sh +6 -0
  38. package/scripts/diloco_train.py +319 -0
  39. package/scripts/train_lora.py +237 -0
  40. package/scripts/train_micro.py +586 -0
@@ -0,0 +1,16 @@
1
+ import { fileURLToPath as __synFup } from "url";import { dirname as __synDn } from "path";const __filename = __synFup(import.meta.url);const __dirname = __synDn(__filename);
2
+ import {
3
+ EmbeddingHelper,
4
+ cosineSimilarity,
5
+ generateEmbedding,
6
+ init_embedding,
7
+ similaritySearch
8
+ } from "./chunk-C5XRYLYP.js";
9
+ import "./chunk-D7ADMHK2.js";
10
+ init_embedding();
11
+ export {
12
+ EmbeddingHelper,
13
+ cosineSimilarity,
14
+ generateEmbedding,
15
+ similaritySearch
16
+ };
@@ -0,0 +1,37 @@
1
+ import { fileURLToPath as __synFup } from "url";import { dirname as __synDn } from "path";const __filename = __synFup(import.meta.url);const __dirname = __synDn(__filename);
2
+ import {
3
+ HardwareHelper,
4
+ buildCapabilities,
5
+ buildOsString,
6
+ canDiLoCo,
7
+ canInference,
8
+ canTrain,
9
+ detectAppleSilicon,
10
+ detectHardware,
11
+ detectNvidiaGPU,
12
+ estimateAppleSiliconVram,
13
+ getCompatibleModels,
14
+ getRecommendedTier,
15
+ getSystemInfo,
16
+ getTierName,
17
+ parseNvidiaSmiOutput
18
+ } from "./chunk-NMJVODKH.js";
19
+ import "./chunk-V2L5SXTL.js";
20
+ import "./chunk-D7ADMHK2.js";
21
+ export {
22
+ HardwareHelper,
23
+ buildCapabilities,
24
+ buildOsString,
25
+ canDiLoCo,
26
+ canInference,
27
+ canTrain,
28
+ detectAppleSilicon,
29
+ detectHardware,
30
+ detectNvidiaGPU,
31
+ estimateAppleSiliconVram,
32
+ getCompatibleModels,
33
+ getRecommendedTier,
34
+ getSystemInfo,
35
+ getTierName,
36
+ parseNvidiaSmiOutput
37
+ };