@soulcraft/brainy 2.6.0 → 2.7.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 +12 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -71,6 +71,18 @@ const filtered = await brain.find({
|
|
|
71
71
|
})
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
+
## 📋 System Requirements
|
|
75
|
+
|
|
76
|
+
**Node.js Version:** 22 LTS or later (recommended)
|
|
77
|
+
|
|
78
|
+
- ✅ **Node.js 22 LTS** - Fully supported and recommended for production
|
|
79
|
+
- ✅ **Node.js 20 LTS** - Compatible (maintenance mode)
|
|
80
|
+
- ❌ **Node.js 24** - Not supported (known ONNX runtime compatibility issues)
|
|
81
|
+
|
|
82
|
+
> **Important:** Brainy uses ONNX runtime for AI embeddings. Node.js 24 has known compatibility issues that cause crashes during inference operations. We recommend Node.js 22 LTS for maximum stability.
|
|
83
|
+
|
|
84
|
+
If using nvm: `nvm use` (we provide a `.nvmrc` file)
|
|
85
|
+
|
|
74
86
|
## 🚀 Key Features
|
|
75
87
|
|
|
76
88
|
### World's First Triple Intelligence™ Engine
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soulcraft/brainy",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "Universal Knowledge Protocol™ - World's first Triple Intelligence database unifying vector, graph, and document search in one API. 31 nouns × 40 verbs for infinite expressiveness.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
58
|
-
"node": ">=
|
|
58
|
+
"node": ">=22.0.0"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"build": "npm run build:patterns:if-needed && tsc",
|