@breadai/store-memory
v0.1.2
Published
In-memory storage adapter for bread — implements the session, checkpoint, knowledge, and document ports with no persistence. Ideal for tests and ephemeral runs.
Maintainers
Readme
@breadai/store-memory
In-memory BreadStore — ephemeral, zero-setup, gone when the process exits. The full store
contract (sessions, messages, checkpoints, loops, task runs, knowledge graph, documents) for
tests, examples, and quick local tries. Works on both Bun and Node.
bun add @breadai/store-memory # or: npm i @breadai/store-memoryimport { defineConfig } from '@breadai/core'
import { store } from '@breadai/store-memory'
export default defineConfig({
entrypoints: ['echo'],
store: store(),
})For anything that should survive a restart, use
@breadai/store-postgres or one of the
SQLite stores.
Part of bread — an explicit-by-design framework for AI agents. Docs: store · all docs.
License
MIT © Matteo Zambon
