- **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.
42 lines
499 B
Text
42 lines
499 B
Text
# Exclude source maps
|
|
*.map
|
|
**/*.map
|
|
|
|
# Development files
|
|
node_modules/
|
|
src/
|
|
tests/
|
|
examples/
|
|
.github/
|
|
.vscode/
|
|
.idea/
|
|
cloud-wrapper/
|
|
scripts/
|
|
dev/
|
|
|
|
# Configuration files
|
|
.eslintrc
|
|
.prettierrc
|
|
tsconfig*.json
|
|
rollup.config.js
|
|
jest.config.js
|
|
|
|
# Build artifacts
|
|
emocoverage/
|
|
.nyc_output/
|
|
|
|
# Large files
|
|
# Include the logo but exclude other PNGs
|
|
!brainy.png
|
|
*.png
|
|
encoded-image.*
|
|
README.demo.md
|
|
scalingStrategy.md
|
|
|
|
# Misc
|
|
.DS_Store
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
test-results.json
|