Concept · living document
Agents don't remember data, they remember stories. The search box gets "that lender from the lake house closing" while the CRM holds field values, email signatures, and note fragments. Keyword search misses because the vocabulary doesn't overlap. The standard fix is semantic search with embeddings and a vector database, and that fix fights everything Cloze's architecture stands for: per-user isolated databases, local-first storage, no server-side pooling of customer data.
Meta published a training-free alternative this spring (SIRA, arXiv 2605.06647, MIT-licensed). At ingestion, an LLM reads each record once and writes down the search phrases a user might type that the record itself never says. Those phrases get stored as plain text alongside the record. Retrieval stays ordinary keyword search. No embeddings, no vector index, no new infrastructure. On the standard retrieval benchmarks it beats the leading embedding model (0.691 vs 0.648 Recall@10).
I ported the method and ran it against my own 719-document knowledge base with a local model. Where queries were precise, it changed nothing. Where queries were vague and in plain language, the way a person actually asks, recall went from 0.825 to 0.950 and the right document moved toward the top of the list. The lift lives exactly where CRM search hurts.
This is the part that matters in 2026. Post-NAR-settlement, "why did the system show me this" is no longer academic. Embedding similarity can't answer it; a number like 0.87 explains nothing to a compliance officer or a plaintiff's attorney. Enrichment phrases are readable text. You can inspect them, correct them, and lint them against fair-housing language lists before they ever enter the index. Explainable retrieval isn't a nice-to-have in real estate anymore, it's a defensible position.
A pilot is one enrichment prompt, one batch job over an existing index, and an A/B on search success rate. My 719-document run took under two hours on a laptop-class model. No migration, no new datastore, reversible by deleting a text field.
A living document: the source note is the single source of truth and this page re-renders from it on every site regeneration. Last built 2026-09-21.