feat: implement augmentation type system and release automation
This commit is contained in:
parent
d2ddbd2613
commit
022680a2f5
8 changed files with 287 additions and 8 deletions
|
|
@ -1,4 +1,18 @@
|
|||
/** Common types for augmentation system */
|
||||
|
||||
/**
|
||||
* Enum representing all types of augmentations available in the Brainy system.
|
||||
*/
|
||||
export enum AugmentationType {
|
||||
SENSE = 'sense',
|
||||
CONDUIT = 'conduit',
|
||||
COGNITION = 'cognition',
|
||||
MEMORY = 'memory',
|
||||
PERCEPTION = 'perception',
|
||||
DIALOG = 'dialog',
|
||||
ACTIVATION = 'activation',
|
||||
WEBSOCKET = 'webSocket'
|
||||
}
|
||||
type WebSocketConnection = {
|
||||
connectionId: string
|
||||
url: string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue