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.
- package/assets/vector-cortex/encoder-v1/manifest.json +1 -1
- package/assets/vector-cortex/encoder-v1/model-card.json +1 -1
- package/assets/vector-cortex/encoder-v1/model.onnx +0 -0
- package/assets/vector-cortex/encoder-v1/tokenizer.json +1 -1
- package/dist/config/vector-cortex-enc0b.js +34 -0
- package/dist/config/vector-cortex-enc0c.js +35 -0
- package/dist/config/vector-cortex.js +2 -1
- package/dist/config.js +1 -1
- package/dist/extensions/dashboard-server/routes-rag-settings-vector-cortex.js +2 -0
- package/dist/src/config/vector-cortex-enc0b.js +34 -0
- package/dist/src/config/vector-cortex-enc0c.js +35 -0
- package/dist/src/config/vector-cortex.js +2 -1
- package/dist/src/config.js +1 -1
- package/dist/src/vector-cortex/encoder/emit.js +2 -0
- package/dist/src/vector-cortex/encoder/encoder-onnx-dispatch.js +58 -0
- package/dist/src/vector-cortex/encoder/heads-candidate.js +127 -0
- package/dist/src/vector-cortex/encoder/heads.js +4 -0
- package/dist/src/vector-cortex/encoder/onnx.js +147 -0
- package/dist/src/vector-cortex/encoder/runtime-wasm.js +17 -4
- package/dist/src/vector-cortex/encoder/runtime.js +17 -7
- package/dist/src/vector-cortex/encoder/types-vc2c.js +9 -0
- package/dist/src/vector-cortex/encoder/types.js +1 -1
- package/dist/vector-cortex/encoder/emit.js +2 -0
- package/dist/vector-cortex/encoder/encoder-onnx-dispatch.js +58 -0
- package/dist/vector-cortex/encoder/heads-candidate.js +127 -0
- package/dist/vector-cortex/encoder/heads.js +4 -0
- package/dist/vector-cortex/encoder/onnx.js +147 -0
- package/dist/vector-cortex/encoder/runtime-wasm.js +17 -4
- package/dist/vector-cortex/encoder/runtime.js +17 -7
- package/dist/vector-cortex/encoder/types-vc2c.js +9 -0
- package/dist/vector-cortex/encoder/types.js +1 -1
- package/extensions/dashboard-server/routes-rag-settings-vector-cortex.ts +12 -0
- package/package.json +3 -2
- package/src/config/vector-cortex-enc0b.ts +36 -0
- package/src/config/vector-cortex-enc0c.ts +37 -0
- package/src/config/vector-cortex.ts +2 -2
- package/src/config.ts +2 -0
- package/src/vector-cortex/encoder/emit.ts +5 -1
- package/src/vector-cortex/encoder/encoder-onnx-dispatch.ts +76 -0
- package/src/vector-cortex/encoder/heads-candidate.ts +148 -0
- package/src/vector-cortex/encoder/heads.ts +14 -0
- package/src/vector-cortex/encoder/onnx.ts +198 -0
- package/src/vector-cortex/encoder/runtime-wasm.ts +20 -7
- package/src/vector-cortex/encoder/runtime.ts +27 -9
- package/src/vector-cortex/encoder/types-vc2c.ts +10 -0
- 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
|
+
];
|