storeAssistantMessage
Saves assistant messages to short-term memory with customizable importance levels and optional metadata for organized retrieval and context-aware operations.
Instructions
Stores an assistant message in the short-term memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the message | |
importance | No | Importance level (low, medium, high) | low |
metadata | No | Optional metadata for the message |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the message",
"type": "string"
},
"importance": {
"default": "low",
"description": "Importance level (low, medium, high)",
"type": "string"
},
"metadata": {
"additionalProperties": true,
"description": "Optional metadata for the message",
"type": "object"
}
},
"required": [
"content"
],
"type": "object"
}