Give your AI persistent memory. Store conversations, search semantically, build knowledge graphs, and watch your AI get smarter with every interaction.
Unique identifier to persist memories across multiple Actor runs. Use the same Session ID to continue where you left off. Leave empty for one-time runs.
Memory Namespace
namespacestringOptional
Organize memories into separate collections (like folders). Different namespaces are completely isolated.
Default value of this property is "default"
Memories to Store
memoriesarrayOptional
Text content to store in memory. Each item becomes a searchable memory with vector embeddings.
Search Query
querystringOptional
What are you looking for? The engine uses semantic understanding to find relevant memories even with different wording.
Batch Search Queries
queriesarrayOptional
Multiple search queries to run in parallel. Each query returns its own set of results.
Memory ID
memoryIdstringOptional
Unique identifier of a specific memory for get/delete/update operations
Memory IDs (Batch)
memoryIdsarrayOptional
Array of memory IDs for batch delete operation
Memory Updates
updatesobjectOptional
Fields to update on a memory. You can update text, metadata, or both.
Metadata Filter
metadataFilterobjectOptional
Filter memories by metadata fields. Only memories matching ALL specified fields are affected.
Number of Results
topKintegerOptional
Maximum number of similar memories to return
Default value of this property is 10
Similarity Threshold
similarityThresholdnumberOptional
Minimum similarity score required. Higher values return more relevant but fewer results.
Default value of this property is 0.7
Distance Metric
distanceMetricEnumOptional
Algorithm used to measure similarity between memory vectors