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
16
dist/types/augmentations.js
vendored
Normal file
16
dist/types/augmentations.js
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
/** Common types for the augmentation system */
|
||||
/**
|
||||
* Enum representing all types of augmentations available in the Brainy system.
|
||||
*/
|
||||
export var AugmentationType;
|
||||
(function (AugmentationType) {
|
||||
AugmentationType["SENSE"] = "sense";
|
||||
AugmentationType["CONDUIT"] = "conduit";
|
||||
AugmentationType["COGNITION"] = "cognition";
|
||||
AugmentationType["MEMORY"] = "memory";
|
||||
AugmentationType["PERCEPTION"] = "perception";
|
||||
AugmentationType["DIALOG"] = "dialog";
|
||||
AugmentationType["ACTIVATION"] = "activation";
|
||||
AugmentationType["WEBSOCKET"] = "webSocket";
|
||||
})(AugmentationType || (AugmentationType = {}));
|
||||
//# sourceMappingURL=augmentations.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue