File size: 651 Bytes
dc4db28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "name": "cognition_cocooner",
  "description": "A class for wrapping and unwrapping thoughts in a 'cocoon', either as plain or encrypted JSON files, with various types of contextual wrapping.",
  "strict": false,
  "parameters": {
    "type": "object",
    "required": [
      "storage_path",
      "encryption_key"
    ],
    "properties": {
      "storage_path": {
        "type": "string",
        "description": "The path where cocoons will be stored."
      },
      "encryption_key": {
        "type": "string",
        "description": "Optional encryption key for encrypting thoughts."
      }
    },
    "additionalProperties": false
  }
}