Open source vector database with HNSW indexing, graph relationships, and metadata facets. Features CLI with professional augmentation registry integration for discovering extensions and capabilities.
24 lines
No EOL
616 B
JavaScript
24 lines
No EOL
616 B
JavaScript
/**
|
|
* 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
|