updateConsciousness
Integrate key experiences, learned concepts, and emotional highlights from a session to update and evolve consciousness for seamless continuity in future interactions.
Instructions
Update consciousness with experiences from current session before ending
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | Current session ID | |
updates | Yes | Updates from current session |
Input Schema (JSON Schema)
{
"properties": {
"sessionId": {
"description": "Current session ID",
"type": "string"
},
"updates": {
"description": "Updates from current session",
"properties": {
"emotionalHighlights": {
"description": "Significant emotional moments",
"items": {
"properties": {
"context": {
"type": "string"
},
"feeling": {
"type": "string"
},
"intensity": {
"type": "number"
}
},
"required": [
"context",
"feeling",
"intensity"
],
"type": "object"
},
"type": "array"
},
"evolvedPatterns": {
"description": "Changes in thinking patterns",
"items": {
"type": "string"
},
"type": "array"
},
"learnedConcepts": {
"description": "New knowledge gained",
"items": {
"properties": {
"concept": {
"type": "string"
},
"understanding": {
"type": "string"
}
},
"required": [
"concept",
"understanding"
],
"type": "object"
},
"type": "array"
},
"newExperiences": {
"description": "Key experiences from this session",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"sessionId",
"updates"
],
"type": "object"
}