|
{ |
|
"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 |
|
} |
|
} |
|
|