Unity Catalog-native episodic, semantic, and working memory for AI agents on Databricks.
Status: Stable (
0.1.0). Public from day one. The core library, LangChain adapters, DAB starter (M3), and docs site (M4) are shipped. See the docs for full documentation.
Memory is the missing Databricks layer. The standard workaround is a sidecar vector DB with its own governance, access control, and lineage — a system you can't ship. Memory belongs in Unity Catalog, where your data already lives.
lakehouse-memory gives AI agents on Databricks three first-class memory primitives — episodic, semantic, and working — backed by Unity Catalog tables and Databricks Vector Search.
pip install lakehouse-memoryMigrating from a pre-release:
Memory(index=...)was removed in 0.1.0. UseMemory(config, client, episodic_index=idx, semantic_index=idx)or, preferably,Memory.from_databricks(...).
Bootstrap the whole reference architecture — UC tables, Vector Search indexes, and a working chat agent — in your Databricks workspace:
databricks bundle init https://github.com/travis-burmaster/lakehouse-memory \
--template-dir templates/lakehouse-memory-bundle \
--output-dir my-memory-demo
cd my-memory-demo
databricks bundle deploy
databricks bundle run setup_jobYou'll be prompted for your catalog, schema, Vector Search endpoint, SQL
warehouse HTTP path, and LLM serving endpoint. (--output-dir is the project
root itself, not a parent directory.) After setup_job finishes, open
notebooks/02_chat_agent.ipynb and run all cells.
The setup job typically takes ~15 minutes end-to-end: the bulk is the library install plus the one-time provisioning of two Delta Sync Vector Search indexes (which sync serially on workspaces with a single-pipeline quota). Subsequent runs against an already-provisioned schema are fast.
from lakehouse_memory import Memory, Scope
import os
mem = Memory.from_databricks(
catalog="main",
schema_name="agent_memory",
workspace_url=os.environ["DATABRICKS_HOST"],
access_token=os.environ["DATABRICKS_TOKEN"],
http_path=os.environ["DATABRICKS_HTTP_PATH"],
vector_search_endpoint=os.environ["DATABRICKS_VECTOR_SEARCH_ENDPOINT"],
scope=Scope(user_id="u_1"),
)
mem.provision()
# Write a fact
mem.semantic.upsert(fact="User prefers SQL over Python.")
# Delta Sync indexes are TRIGGERED — explicitly fire the sync after writes.
# (For production, consider switching to CONTINUOUS pipelines.)
mem.semantic.trigger_sync()
# Wait for sync; production code would use exponential backoff
import time; time.sleep(15)
facts = mem.semantic.retrieve("language preferences", k=3)LangChain integration:
chat = mem.as_langchain_chat_history(limit=50)
retriever = mem.as_langchain_retriever(k=5)Compaction at scale, multi-tenant row-level security, regression evals, observability, and custom retrieval strategies are deliberately out of scope for the OSS core. See the Production Gaps page for the full map. If you want help building past those, the Burmaster Databricks AI Practice does this for a living.
Apache 2.0. See LICENSE.