Open source vector database with HNSW indexing, graph relationships, and metadata facets. Features CLI with professional augmentation registry integration for discovering extensions and capabilities.
17 lines
443 B
TypeScript
17 lines
443 B
TypeScript
/**
|
|
* Version utilities for Brainy
|
|
*/
|
|
/**
|
|
* Get the current Brainy package version
|
|
* @returns The current version string
|
|
*/
|
|
export declare function getBrainyVersion(): string;
|
|
/**
|
|
* Get version information for augmentation metadata
|
|
* @param service The service/augmentation name
|
|
* @returns Version metadata object
|
|
*/
|
|
export declare function getAugmentationVersion(service: string): {
|
|
augmentation: string;
|
|
version: string;
|
|
};
|