@soulcraft/brainy 0.9.32 → 0.9.34
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.demo.md +1 -1
- package/README.md +4 -7
- package/dist/utils/tensorflowUtils.d.ts.map +1 -1
- package/dist/utils/version.d.ts +1 -1
- package/package.json +4 -4
package/README.demo.md
CHANGED
|
@@ -4,7 +4,7 @@ The Brainy interactive demo showcases the library's features in a web browser. F
|
|
|
4
4
|
|
|
5
5
|
## Prerequisites
|
|
6
6
|
|
|
7
|
-
- Make sure you have Node.js installed (version
|
|
7
|
+
- Make sure you have Node.js installed (version 23.0.0 or higher)
|
|
8
8
|
- Ensure the project is built (run both `npm run build` and `npm run build:browser`)
|
|
9
9
|
|
|
10
10
|
## Running the Demo
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://nodejs.org/)
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
8
|
[](CONTRIBUTING.md)
|
|
9
|
-
[](https://www.npmjs.com/package/@soulcraft/brainy)
|
|
10
10
|
|
|
11
11
|
[//]: # ([](https://github.com/sodal-project/cartographer))
|
|
12
12
|
|
|
@@ -280,7 +280,6 @@ Brainy's pipeline is designed to handle streaming data efficiently:
|
|
|
280
280
|
- Automatic thread management based on environment capabilities
|
|
281
281
|
- Example: `executeTypedPipeline(augmentations, method, args, { mode: ExecutionMode.THREADED })`
|
|
282
282
|
|
|
283
|
-
|
|
284
283
|
### Running the Pipeline
|
|
285
284
|
|
|
286
285
|
The pipeline runs automatically when you:
|
|
@@ -416,7 +415,6 @@ brainy visualize
|
|
|
416
415
|
brainy visualize --root <id> --depth 3
|
|
417
416
|
```
|
|
418
417
|
|
|
419
|
-
|
|
420
418
|
### Using the CLI in Your Code
|
|
421
419
|
|
|
422
420
|
If you need to use the CLI functionality in your code, you can import it explicitly:
|
|
@@ -432,7 +430,6 @@ import '@soulcraft/brainy/cli'
|
|
|
432
430
|
This will only build and load the CLI when you explicitly import it, keeping your bundle size small when you don't need
|
|
433
431
|
the CLI.
|
|
434
432
|
|
|
435
|
-
|
|
436
433
|
### Available Commands
|
|
437
434
|
|
|
438
435
|
#### Basic Database Operations:
|
|
@@ -1251,14 +1248,14 @@ comprehensive [Scaling Strategy](scalingStrategy.md) document.
|
|
|
1251
1248
|
|
|
1252
1249
|
## Requirements
|
|
1253
1250
|
|
|
1254
|
-
- Node.js >=
|
|
1255
|
-
|
|
1251
|
+
- Node.js >= 23.0.0
|
|
1256
1252
|
|
|
1257
1253
|
## Contributing
|
|
1258
1254
|
|
|
1259
1255
|
For detailed contribution guidelines, please see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
1260
1256
|
|
|
1261
|
-
For developer documentation, including building, testing, and publishing instructions, please
|
|
1257
|
+
For developer documentation, including building, testing, and publishing instructions, please
|
|
1258
|
+
see [DEVELOPERS.md](DEVELOPERS.md).
|
|
1262
1259
|
|
|
1263
1260
|
We have a [Code of Conduct](CODE_OF_CONDUCT.md) that all contributors are expected to follow.
|
|
1264
1261
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tensorflowUtils.d.ts","sourceRoot":"","sources":["../../src/utils/tensorflowUtils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;
|
|
1
|
+
{"version":3,"file":"tensorflowUtils.d.ts","sourceRoot":"","sources":["../../src/utils/tensorflowUtils.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAiOH;;;;GAIG;AACH,wBAAgB,cAAc,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAKpD;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,OAAO,GAAG,OAAO,CAElD"}
|
package/dist/utils/version.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soulcraft/brainy",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.34",
|
|
4
4
|
"description": "A vector graph database using HNSW indexing with Origin Private File System storage",
|
|
5
5
|
"main": "dist/unified.js",
|
|
6
6
|
"module": "dist/unified.js",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"check-format": "prettier --check \"src/**/*.{ts,js}\"",
|
|
45
45
|
"check-style": "node scripts/check-code-style.js",
|
|
46
46
|
"prepare": "npm run build",
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
47
|
+
"deploy": "npm run build && npm publish",
|
|
48
|
+
"deploy:cli": "node scripts/generate-version.js && cd cli-package && npm run build && npm publish",
|
|
49
|
+
"deploy:both": "node scripts/publish-cli.js",
|
|
50
50
|
"deploy:cloud:aws": "cd cloud-wrapper && npm run build && npm run deploy:aws",
|
|
51
51
|
"deploy:cloud:gcp": "cd cloud-wrapper && npm run build && npm run deploy:gcp",
|
|
52
52
|
"deploy:cloud:cloudflare": "cd cloud-wrapper && npm run build && npm run deploy:cloudflare",
|