remember
Store and organize information with structured titles and content using a SQLite-based memory storage system. Ideal for managing and retrieving data efficiently.
Instructions
Store a new memory.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The full content of the memory to store | |
title | Yes | A concise title for the memory |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The full content of the memory to store",
"type": "string"
},
"title": {
"description": "A concise title for the memory",
"type": "string"
}
},
"required": [
"title",
"content"
],
"title": "rememberArguments",
"type": "object"
}