@loreai/onnxruntime-linux-x64 0.0.0 → 0.36.0

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 CHANGED
@@ -1,6 +1,5 @@
1
1
  # @loreai/onnxruntime-linux-x64
2
2
 
3
- Placeholder release to reserve the name. This package will carry the linux-x64 native
4
- ONNX Runtime for [`@loreai/gateway`](https://www.npmjs.com/package/@loreai/gateway)
5
- local embeddings, installed automatically via `optionalDependencies` + `os`/`cpu`.
6
- Do not depend on it directly.
3
+ The linux-x64 native ONNX Runtime for [`@loreai/gateway`](https://www.npmjs.com/package/@loreai/gateway) local embeddings.
4
+
5
+ This package is installed automatically (via `optionalDependencies` + `os`/`cpu`) on matching platforms and loaded at runtime. You should not depend on it directly.
Binary file
Binary file
package/package.json CHANGED
@@ -1,8 +1,26 @@
1
1
  {
2
2
  "name": "@loreai/onnxruntime-linux-x64",
3
- "version": "0.0.0",
4
- "description": "Placeholder to reserve the name. Native ONNX Runtime (linux-x64) for @loreai/gateway local embeddings; real builds are published in lockstep with @loreai/gateway.",
3
+ "version": "0.36.0",
4
+ "description": "Native ONNX Runtime (linux-x64) for @loreai/gateway local embeddings. Auto-selected via os/cpu; not meant to be installed directly.",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
- "repository": { "type": "git", "url": "git+https://github.com/BYK/loreai.git", "directory": "packages/gateway" },
7
- "publishConfig": { "access": "public" }
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/BYK/loreai.git",
9
+ "directory": "packages/gateway"
10
+ },
11
+ "os": [
12
+ "linux"
13
+ ],
14
+ "cpu": [
15
+ "x64"
16
+ ],
17
+ "preferUnplugged": true,
18
+ "files": [
19
+ "libonnxruntime.so.1",
20
+ "libonnxruntime_providers_shared.so",
21
+ "onnxruntime_binding.node"
22
+ ],
23
+ "publishConfig": {
24
+ "access": "public"
25
+ }
8
26
  }