Store Multiple Memories
montycat_remember_bulkStore multiple records at once to persist memories with automatic embedding and indexing enabling semantic search and time-based recall.
Instructions
Store many memories at once; all are embedded and indexed automatically.
Args:
values: A list of records (JSON objects) to store.
keyspace: Memory namespace (defaults to the configured one).
timestamp: Index a _created_at on each record for time-range recall.
Defaults to MONTYCAT_AUTO_TIMESTAMP (on). Pass False for
large imports that will never be recalled by time — it skips
a server-side timestamp parse per record.
wait_for_index: For persistent keyspaces, wait for secondary indexes
before returning. Defaults to the engine setting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scope | No | ||
| values | Yes | ||
| vectors | No | ||
| keyspace | No | ||
| timestamp | No | ||
| wait_for_index | No |