getRecentMessages
Retrieve recent messages from short-term memory with customizable filters like message limit and importance level, enabling efficient recall for AI assistants.
Instructions
Retrieves recent messages from the short-term memory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
importance | No | Filter by importance level (low, medium, high) | |
limit | No | Maximum number of messages to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"importance": {
"description": "Filter by importance level (low, medium, high)",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of messages to retrieve",
"type": "number"
}
},
"type": "object"
}