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

29
dist/pipeline.js vendored Normal file
View file

@ -0,0 +1,29 @@
/**
* Pipeline - Clean Re-export of Cortex
*
* After the Great Cleanup: Pipeline IS Cortex. No delegation, no complexity.
* ONE way to do everything.
*/
// Export the ONE consolidated Cortex class as Pipeline for those who prefer the name
export { Cortex as Pipeline, cortex as pipeline, ExecutionMode } from './augmentationPipeline.js';
// Re-export for backward compatibility in imports
export { cortex as augmentationPipeline, Cortex } from './augmentationPipeline.js';
// Simple factory functions
export const createPipeline = async () => {
const { Cortex } = await import('./augmentationPipeline.js');
return new Cortex();
};
export const createStreamingPipeline = async () => {
const { Cortex } = await import('./augmentationPipeline.js');
return new Cortex();
};
// Execution mode alias
export var StreamlinedExecutionMode;
(function (StreamlinedExecutionMode) {
StreamlinedExecutionMode["SEQUENTIAL"] = "sequential";
StreamlinedExecutionMode["PARALLEL"] = "parallel";
StreamlinedExecutionMode["FIRST_SUCCESS"] = "firstSuccess";
StreamlinedExecutionMode["FIRST_RESULT"] = "firstResult";
StreamlinedExecutionMode["THREADED"] = "threaded";
})(StreamlinedExecutionMode || (StreamlinedExecutionMode = {}));
//# sourceMappingURL=pipeline.js.map