Commit graph

90 commits

Author SHA1 Message Date
70716c60dd 0.53.0 2025-08-07 08:00:52 -07:00
837ec5d86a chore(release): 0.52.0 [skip ci] 2025-08-07 06:17:33 -07:00
34c517d878 feat: add automatic high-volume handling for S3 storage adapter
- Configure AWS SDK with 500 max sockets (up from default 50)
- Add intelligent backpressure with pending operation tracking
- Implement dynamic batch sizing based on memory pressure
- Auto-reduce operations when heap usage exceeds 80%
- Gradually recover throughput when system stabilizes
- Track and respond to consecutive error patterns
- Fix S3 mock to not add ID to metadata objects
- Add backpressure to metadata save operations
- All changes are transparent - no configuration required
2025-08-07 06:11:45 -07:00
7fa67b55ab chore: remove unused rollup dependencies
- Remove all @rollup/* plugin dependencies and rollup itself
- Project now uses simple TypeScript compilation (tsc) only
- Update model bundle timestamp
2025-08-07 05:40:41 -07:00
79263b6969 chore: bump version to 0.51.2 2025-08-06 16:41:10 -07:00
3072afd998 chore: bump version to 0.51.1 2025-08-06 16:39:01 -07:00
1a7a453a4e chore: bump version to 0.51.0 2025-08-06 16:28:52 -07:00
e45fc3efdd chore: bump version to 0.50.0 2025-08-06 16:08:55 -07:00
b6773b92c1 0.49.0 2025-08-06 15:06:14 -07:00
9c450f3401 chore(release): 0.48.0 [skip ci] 2025-08-05 20:02:32 -07:00
64e2c63c2a feat: add GPU acceleration for embeddings with smart device auto-detection
Add comprehensive GPU support for embedding generation while maintaining optimized CPU processing for distance calculations:

- Add device option to TransformerEmbeddingOptions (auto, cpu, webgpu, cuda, gpu)
- Implement smart auto-detection of best available GPU (WebGPU for browsers, CUDA for Node.js)
- Add automatic CPU fallback if GPU initialization fails
- Fix misleading GPU acceleration claims in distance functions and HNSW search
- Update documentation to accurately reflect GPU usage (embeddings only)
- Add comprehensive example demonstrating GPU acceleration usage
- Maintain full backward compatibility with existing code

Performance improvements: 3-5x faster embedding generation when GPU is available, while keeping faster CPU processing for 384-dim vector distance calculations.
2025-08-05 20:00:04 -07:00
d58e9e50c2 chore(release): 0.47.0 [skip ci] 2025-08-05 19:48:43 -07:00
a35acd8f0e feat\!: migrate from TensorFlow.js to Transformers.js with ONNX Runtime
BREAKING CHANGE: Complete migration from TensorFlow.js to Transformers.js for embedding generation

This is a major architectural change that replaces TensorFlow.js (USE model) with Transformers.js (all-MiniLM-L6-v2) for significantly improved performance and reduced complexity.

Key Changes:
- Replace TensorFlow.js Universal Sentence Encoder with Transformers.js all-MiniLM-L6-v2
- Reduce model size from 525MB to 87MB (83% reduction)
- Reduce embedding dimensions from 512 to 384 (faster distance calculations)
- Remove TensorFlow.js Float32Array patching (caused ONNX conflicts)
- Implement smart bundled model detection for offline operation
- Add explicit model download script for Docker deployments
- Remove complex environment variables in favor of simple configuration
- Update all distance functions to use optimized pure JavaScript
- Remove TensorFlow-specific utilities and type definitions

Performance Improvements:
- Model loading: 5x faster (87MB vs 525MB)
- Memory usage: 75% reduction (~200-400MB vs ~1.5GB)
- Distance calculations: Faster pure JS vs GPU overhead for small vectors
- Cold start performance: Significantly improved

Files Changed:
- Updated package.json: New dependencies, simplified scripts
- Rewrote src/utils/embedding.ts: Complete Transformers.js implementation
- Updated src/utils/distance.ts: Optimized JavaScript distance functions
- Simplified src/setup.ts: Removed TensorFlow-specific patching
- Simplified src/utils/textEncoding.ts: Only Node.js TextEncoder/Decoder patches
- Deleted src/utils/robustModelLoader.ts: TensorFlow-specific loader
- Deleted src/types/tensorflowTypes.ts: TensorFlow type definitions
- Added scripts/download-models.cjs: Docker-compatible model downloader
- Added comprehensive documentation: README.md, OFFLINE_MODELS.md, analysis docs

Testing:
- All 19 tests passing
- Removed test mocking in favor of real implementation testing
- Updated test environment for Transformers.js compatibility
- Performance tests validate improved efficiency

This migration resolves production issues with Docker egress limitations and provides a more robust, performant foundation for vector operations.
2025-08-05 19:29:59 -07:00
38fc8cab3e chore(release): 0.46.0 [skip ci] 2025-08-05 18:12:50 -07:00
49b86b6183 chore(release): 0.45.0 [skip ci] 2025-08-05 17:29:17 -07:00
76916cf4e1 chore(release): 0.44.0 [skip ci] 2025-08-05 16:22:14 -07:00
1cd6bb9976 chore(release): 0.43.0 [skip ci] 2025-08-05 16:10:18 -07:00
9e686f9610 chore(release): 0.41.0 [skip ci] 2025-08-05 07:29:40 -07:00
609370c4fc fix(security): resolve critical vulnerability in form-data dependency
- Add npm overrides to force form-data version 4.0.4 or higher
- Fixes GitHub security advisory GHSA-fjxv-7rqg-78g4
- Vulnerability was in transitive dependency via TensorFlow.js
- No functionality changes, all tests passing
2025-08-05 07:28:10 -07:00
b9eb97321e chore(release): 0.40.0 [skip ci] 2025-08-04 20:01:30 -07:00
8c1c9a08d3 chore(release): 0.39.0 [skip ci] 2025-08-04 14:56:27 -07:00
fcfe5111bd chore(release): 0.38.0 [skip ci] 2025-08-04 12:20:06 -07:00
be09d40ae2 chore(release): 0.37.0 [skip ci] 2025-08-03 17:34:36 -07:00
5ab6022f6b chore(release): 0.36.0 [skip ci] 2025-08-03 10:48:41 -07:00
73bafd2c43 chore(release): 0.35.0 [skip ci] 2025-08-02 16:08:14 -07:00
ba8406d6fe **feat(docs): add comprehensive architecture documentation for Brainy**
- **Documentation Additions**:
  - Created `brainy_architecture_diagram.md` to detail Brainy's architecture using diagrams and structured descriptions:
    - Added overviews of the system, core architecture, and augmentation pipeline.
    - Defined data models, graph structures, storage architecture, and performance optimizations.
    - Explained vector search engine design, HNSW index structure, and usage flow examples.
  - Developed `brainy_architecture_visual.md` to complement the architecture with visual aids in Mermaid.js:
    - Provided detailed flowcharts, mind maps, and sequence diagrams for system components and data flow.

- **Purpose**:
  - Provide in-depth technical insights into Brainy's architecture for developers and stakeholders.
  - Enhance understanding of the system's core design principles with easy-to-follow diagrams and examples.
2025-08-02 16:05:48 -07:00
b63efbcb89 chore(release): 0.34.0 [skip ci] 2025-08-01 18:32:24 -07:00
362f398c70 chore(release): 0.33.0 [skip ci] 2025-08-01 08:57:54 -07:00
ed417c9393 chore(release): 0.32.0 [skip ci] 2025-07-31 17:58:11 -07:00
0072efddd2 chore(release): 0.31.0 [skip ci] 2025-07-31 14:28:04 -07:00
10131269bb chore(release): 0.30.0 [skip ci] 2025-07-31 14:04:52 -07:00
572c3863ea chore(release): 0.29.0 [skip ci] 2025-07-31 14:03:15 -07:00
f1cc03f19c chore(release): 0.28.0 [skip ci] 2025-07-31 13:39:07 -07:00
ad2a445a90 chore(release): 0.27.1 [skip ci] 2025-07-31 13:22:45 -07:00
407aca7fbb chore(versioning): switch to standard-version for automated changelog generation
This change implements standard-version for versioning and changelog management:
- Adds standard-version as a dev dependency
- Updates package.json scripts to use standard-version
- Creates .versionrc.json configuration file
- Updates CHANGELOG.md with instructions for conventional commits
- Removes obsolete manual changelog update script
2025-07-31 13:15:04 -07:00
70840c588e Merge remote-tracking branch 'origin/main' 2025-07-31 07:35:21 -07:00
5de9b09fa7 **chore(dependencies): remove unused dependencies**
Remove `@modelcontextprotocol/server-sequential-thinking` and its nested dependencies from `devDependencies` in `package-lock.json` as they are no longer required for the project. This reduces the overall package size and improves maintenance.
2025-07-30 14:39:13 -07:00
f3ee0d3bca 0.27.0 2025-07-30 13:32:54 -07:00
0932e15274 0.26.0 2025-07-30 11:38:40 -07:00
57f39ef839 0.25.0 2025-07-28 16:25:48 -07:00
a2a8553cc9 0.24.0 2025-07-28 16:25:47 -07:00
6e9f75e762 0.23.0 2025-07-28 16:25:46 -07:00
e11d20d94b 0.22.0 2025-07-28 16:25:45 -07:00
d6b30cb348 0.21.0 2025-07-28 16:25:44 -07:00
2d4aeaa0fe 0.20.0 2025-07-28 16:25:41 -07:00
e3a2c18a2c 0.19.0 2025-07-28 16:25:20 -07:00
2ebed2a466 **docs: remove outdated statistics-related documentation and add standards**
- **Removed Files**:
  - Deleted outdated statistics documentation files (`statistics.md`, `statistics-flush-solution.md`, `statistics-summary.md`) to clean up the repository and avoid confusion.

- **Added Standards**:
  - Introduced `DOCUMENTATION_STANDARDS.md` to outline naming conventions and troubleshooting practices for more consistent and maintainable project documentation.

- **Tests**:
  - Added a new test file `edge-cases.test.ts` to verify handling of edge cases, ensuring robust behavior against boundary values and invalid inputs.

**Purpose**: Cleans up deprecated documentation while introducing concrete standards for maintaining and updating documentation. Enhances test coverage for unusual or boundary inputs, improving overall system resilience.
2025-07-28 16:00:05 -07:00
b90fa5c37c **test(api): add integration tests for API endpoints and core functionality**
- **Integration Tests**:
  - Introduced `api-integration.test.ts` to validate API functionality:
    - Verifies text insertion, vector embedding generation, and search operations.
    - Confirms HNSW index correctness for vector similarity search.
    - Ensures no dimensional mismatches in embeddings.

- **Test Server**:
  - Added test server utilizing Express for endpoint simulation (`/insert` and `/search/text`).

- **Dependencies**:
  - Introduced `express` and `node-fetch` as new dependencies for testing purposes.

- **Vitest Fix**:
  - Updated `vitest.config.ts` to resolve the `process.memoryUsage` error by setting `logHeapUsage: false`.

- **Package Updates**:
  - Modified `package-lock.json` to include newly added dependencies and updates.

**Purpose**: Guarantees the stability of core API endpoints and vector-related functionality, ensuring reliable behavior for end-to-end scenarios.
2025-07-28 10:04:45 -07:00
1cc5843187 0.18.0 2025-07-23 12:39:39 -07:00
5aca7e611f 0.17.0 2025-07-22 16:04:34 -07:00