Initial commit: Brainy - Multi-Dimensional AI Database

Open source vector database with HNSW indexing, graph relationships,
and metadata facets. Features CLI with professional augmentation registry
integration for discovering extensions and capabilities.
This commit is contained in:
David Snelling 2025-08-18 17:35:06 -07:00
commit f8c45f2d8d
448 changed files with 103294 additions and 0 deletions

24
dist/utils/version.js vendored Normal file
View file

@ -0,0 +1,24 @@
/**
* Version utilities for Brainy
*/
// Package version - this should be updated during the build process
const BRAINY_VERSION = '0.41.0';
/**
* Get the current Brainy package version
* @returns The current version string
*/
export function getBrainyVersion() {
return BRAINY_VERSION;
}
/**
* Get version information for augmentation metadata
* @param service The service/augmentation name
* @returns Version metadata object
*/
export function getAugmentationVersion(service) {
return {
augmentation: service,
version: getBrainyVersion()
};
}
//# sourceMappingURL=version.js.map