@loreai/onnxruntime-linux-x64 0.0.0 → 0.35.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 +3 -4
- package/libonnxruntime.so.1 +0 -0
- package/libonnxruntime_providers_shared.so +0 -0
- package/onnxruntime_binding.node +0 -0
- package/package.json +22 -4
package/README.md
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# @loreai/onnxruntime-linux-x64
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,8 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loreai/onnxruntime-linux-x64",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.35.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": {
|
|
7
|
-
|
|
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
|
}
|