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:
commit
f8c45f2d8d
448 changed files with 103294 additions and 0 deletions
24
dist/pipeline.d.ts
vendored
Normal file
24
dist/pipeline.d.ts
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
/**
|
||||
* Pipeline - Clean Re-export of Cortex
|
||||
*
|
||||
* After the Great Cleanup: Pipeline IS Cortex. No delegation, no complexity.
|
||||
* ONE way to do everything.
|
||||
*/
|
||||
export { Cortex as Pipeline, cortex as pipeline, ExecutionMode, PipelineOptions } from './augmentationPipeline.js';
|
||||
export { cortex as augmentationPipeline, Cortex } from './augmentationPipeline.js';
|
||||
export declare const createPipeline: () => Promise<import("./augmentationPipeline.js").Cortex>;
|
||||
export declare const createStreamingPipeline: () => Promise<import("./augmentationPipeline.js").Cortex>;
|
||||
export type { PipelineOptions as StreamlinedPipelineOptions } from './augmentationPipeline.js';
|
||||
export type PipelineResult<T> = {
|
||||
success: boolean;
|
||||
data: T;
|
||||
error?: string;
|
||||
};
|
||||
export type StreamlinedPipelineResult<T> = PipelineResult<T>;
|
||||
export declare enum StreamlinedExecutionMode {
|
||||
SEQUENTIAL = "sequential",
|
||||
PARALLEL = "parallel",
|
||||
FIRST_SUCCESS = "firstSuccess",
|
||||
FIRST_RESULT = "firstResult",
|
||||
THREADED = "threaded"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue