@soulcraft/brainy 0.15.0 → 0.16.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 +17 -2
- package/dist/brainy.js +5657 -5168
- package/dist/brainy.min.js +747 -747
- package/dist/utils/logger.d.ts +99 -0
- package/dist/utils/logger.d.ts.map +1 -0
- package/dist/utils/version.d.ts +1 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
[](https://nodejs.org/)
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
8
|
[](CONTRIBUTING.md)
|
|
9
|
-
[](https://www.npmjs.com/package/@soulcraft/brainy)
|
|
10
9
|
|
|
11
10
|
[//]: # ([](https://github.com/sodal-project/cartographer))
|
|
12
11
|
|
|
@@ -36,7 +35,7 @@ it gets - learning from your data to provide increasingly relevant results and c
|
|
|
36
35
|
- **Adaptive Intelligence** - Automatically optimizes for your environment and usage patterns
|
|
37
36
|
- **Persistent Storage** - Data persists across sessions and scales to any size
|
|
38
37
|
- **TypeScript Support** - Fully typed API with generics
|
|
39
|
-
- **CLI Tools** -
|
|
38
|
+
- **CLI Tools & Web Service** - Command-line interface and REST API web service for data management
|
|
40
39
|
- **Model Control Protocol (MCP)** - Allow external AI models to access Brainy data and use augmentation pipeline as
|
|
41
40
|
tools
|
|
42
41
|
|
|
@@ -64,6 +63,22 @@ npm install @soulcraft/brainy
|
|
|
64
63
|
|
|
65
64
|
TensorFlow.js packages are included as bundled dependencies and will be automatically installed without any additional configuration.
|
|
66
65
|
|
|
66
|
+
### Additional Packages
|
|
67
|
+
|
|
68
|
+
Brainy offers specialized packages for different use cases:
|
|
69
|
+
|
|
70
|
+
#### CLI Package
|
|
71
|
+
```bash
|
|
72
|
+
npm install -g @soulcraft/brainy-cli
|
|
73
|
+
```
|
|
74
|
+
Command-line interface for data management, bulk operations, and database administration.
|
|
75
|
+
|
|
76
|
+
#### Web Service Package
|
|
77
|
+
```bash
|
|
78
|
+
npm install @soulcraft/brainy-web-service
|
|
79
|
+
```
|
|
80
|
+
REST API web service wrapper that provides HTTP endpoints for search operations and database queries.
|
|
81
|
+
|
|
67
82
|
## 🏁 Quick Start
|
|
68
83
|
|
|
69
84
|
Brainy uses a unified build that automatically adapts to your environment (Node.js, browser, or serverless):
|