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