pi-mega-compact 0.20.43 → 0.20.45

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 (46) hide show
  1. package/assets/vector-cortex/encoder-v1/manifest.json +1 -1
  2. package/assets/vector-cortex/encoder-v1/model-card.json +1 -1
  3. package/assets/vector-cortex/encoder-v1/model.onnx +0 -0
  4. package/assets/vector-cortex/encoder-v1/tokenizer.json +1 -1
  5. package/dist/config/vector-cortex-enc0b.js +34 -0
  6. package/dist/config/vector-cortex-enc0c.js +35 -0
  7. package/dist/config/vector-cortex.js +2 -1
  8. package/dist/config.js +1 -1
  9. package/dist/extensions/dashboard-server/routes-rag-settings-vector-cortex.js +2 -0
  10. package/dist/src/config/vector-cortex-enc0b.js +34 -0
  11. package/dist/src/config/vector-cortex-enc0c.js +35 -0
  12. package/dist/src/config/vector-cortex.js +2 -1
  13. package/dist/src/config.js +1 -1
  14. package/dist/src/vector-cortex/encoder/emit.js +2 -0
  15. package/dist/src/vector-cortex/encoder/encoder-onnx-dispatch.js +58 -0
  16. package/dist/src/vector-cortex/encoder/heads-candidate.js +127 -0
  17. package/dist/src/vector-cortex/encoder/heads.js +4 -0
  18. package/dist/src/vector-cortex/encoder/onnx.js +147 -0
  19. package/dist/src/vector-cortex/encoder/runtime-wasm.js +17 -4
  20. package/dist/src/vector-cortex/encoder/runtime.js +17 -7
  21. package/dist/src/vector-cortex/encoder/types-vc2c.js +9 -0
  22. package/dist/src/vector-cortex/encoder/types.js +1 -1
  23. package/dist/vector-cortex/encoder/emit.js +2 -0
  24. package/dist/vector-cortex/encoder/encoder-onnx-dispatch.js +58 -0
  25. package/dist/vector-cortex/encoder/heads-candidate.js +127 -0
  26. package/dist/vector-cortex/encoder/heads.js +4 -0
  27. package/dist/vector-cortex/encoder/onnx.js +147 -0
  28. package/dist/vector-cortex/encoder/runtime-wasm.js +17 -4
  29. package/dist/vector-cortex/encoder/runtime.js +17 -7
  30. package/dist/vector-cortex/encoder/types-vc2c.js +9 -0
  31. package/dist/vector-cortex/encoder/types.js +1 -1
  32. package/extensions/dashboard-server/routes-rag-settings-vector-cortex.ts +12 -0
  33. package/package.json +3 -2
  34. package/src/config/vector-cortex-enc0b.ts +36 -0
  35. package/src/config/vector-cortex-enc0c.ts +37 -0
  36. package/src/config/vector-cortex.ts +2 -2
  37. package/src/config.ts +2 -0
  38. package/src/vector-cortex/encoder/emit.ts +5 -1
  39. package/src/vector-cortex/encoder/encoder-onnx-dispatch.ts +76 -0
  40. package/src/vector-cortex/encoder/heads-candidate.ts +148 -0
  41. package/src/vector-cortex/encoder/heads.ts +14 -0
  42. package/src/vector-cortex/encoder/onnx.ts +198 -0
  43. package/src/vector-cortex/encoder/runtime-wasm.ts +20 -7
  44. package/src/vector-cortex/encoder/runtime.ts +27 -9
  45. package/src/vector-cortex/encoder/types-vc2c.ts +10 -0
  46. package/src/vector-cortex/encoder/types.ts +1 -0
@@ -122,3 +122,13 @@ export const ENC2C_IDS: readonly string[] = [
122
122
  "ENC-019",
123
123
  "ENC-020",
124
124
  ];
125
+
126
+ /** The 6 registered ENC-0b conformance IDs (encoder-trunk fixtures). */
127
+ export const ENC_0B_IDS: readonly string[] = [
128
+ "ENC-TRUNK-001",
129
+ "ENC-TRUNK-002",
130
+ "ENC-TRUNK-003",
131
+ "ENC-TRUNK-004",
132
+ "ENC-TRUNK-005",
133
+ "ENC-TRUNK-006",
134
+ ];
@@ -288,6 +288,7 @@ export {
288
288
  EVALUATION_THRESHOLDS,
289
289
  ENC_QUALIFICATION_FAIL,
290
290
  ENC2C_IDS,
291
+ ENC_0B_IDS,
291
292
  type EncoderHeldOutMetrics,
292
293
  type CalibrationV1,
293
294
  type QualifiedEncoderV1,