save_memory
Store information in a vector database for future reference, enabling AI assistants to maintain persistent memory across conversations.
Instructions
Save a memory to the vector store.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memory | Yes |
Input Schema (JSON Schema)
{
"properties": {
"memory": {
"title": "Memory",
"type": "string"
}
},
"required": [
"memory"
],
"type": "object"
}