Skip to main content

01 — Basic Memory

An agent with SQLiteStore that remembers conversation history across turns. Demonstrates the simplest memory setup.

Full source

definable/examples/memory/01_basic_memory.py

02 — Store Protocol

Exercises the MemoryStore protocol methods using InMemoryStore. Useful for understanding the data model without any external dependencies.

Full source

definable/examples/memory/02_store_protocol.py

03 — Store Backends

Smoke-tests all available memory store backends. Detects which optional dependencies are installed and tests each one.

Full source

definable/examples/memory/03_store_backends.py