A real-time, provenance-invalidated cognitive cache layer for AI agents and RAG.
Project description
Real-time, provenance-invalidated context for AI agents & RAG.
Build understanding once. Reuse it everywhere. Keep it fresh โ automatically.
๐ Documentation ย ยทย coalent.ai ย ยทย ๐ฌ Discord
Quickstart ยท What's new in v0.5 ยท Gate ladder ยท Bring your own stack ยท Benchmark ยท CLI
Your agent re-reads the same sources on every call โ and the moment a source changes, every cached answer is silently wrong.
Coalent builds the understanding once, caches it by what the query means, and invalidates it surgically the instant an underlying source changes. As correct as re-reading everything, at a fraction of the cost โ and never stale.
Why Coalent
Every context layer is forced to trade off three things. Coalent is built to hold all three at once:
- ๐ง Extractive understanding, not chunks. It caches a query-independent set of atomic, source-grounded claims your LLM extracted โ keeping every number and fact โ so one cached unit answers many different later questions. The raw evidence is retained with each unit, so a hit that under-covers a query falls back to retrieval instead of answering thin.
- โป๏ธ Reuse across queries, agents โ and documents. A semantic cache keyed by query meaning: ask again, or from another agent, and it's a warm hit. Cross-unit recall pools claims across units to answer multi-hop questions whose evidence spans documents โ at zero extra LLM calls.
- ๐ฟ Fresh by provenance. Every unit remembers the exact sources it used. When one changes, only the units that actually used it go stale โ precisely, automatically, and lazily.
Coalent sits above retrieval โ bring any retriever (vector DB, hybrid search, GraphRAG, tools, APIs). It's the freshness-and-reuse layer, not another retriever โ deliberately the opposite of GraphRAG's build-the-whole-graph-upfront tax: lightweight, independent units, built lazily only when a query actually needs one, and refreshed by dirtying a single unit (no graph surgery).
New in v0.5 โ
preset="multi_hop", source widening, provenance admission, a self-calibrating adaptive hit gate,fast="auto"numpy acceleration, structured observability events, and an experimental pool serving preview of the v0.6 read path (measured: statistically ties naive dense RAG's best arm at 0.79ร its tokens, pre-registered held-out n=605). All additive, all default-OFF. See What's new.
Install
pip install coalent # the core has zero required dependencies
Quickstart
Runs as-is โ StubSynthesizer needs no API key, so you can feel the loop in ten seconds:
from coalent import SemanticCache, InMemoryRetriever, StubSynthesizer
# 1. Any retriever โ a vector DB, a tool, an API. (In-memory here for the demo.)
retriever = InMemoryRetriever()
retriever.add("confluence:hr", "Leave policy: 21 days of annual leave per year.")
# 2. Build the cache. Swap StubSynthesizer for a real LLM below.
cache = SemanticCache(retriever, StubSynthesizer())
# 3. Ask. The first call builds understanding and caches it; the next is a warm hit.
result = cache.get("what is our leave policy?")
print(result.context["understanding"])
print(result.cache_hit) # False (cold) -> True on the next call
# 4. A source changed? Only the units that used it go stale โ surgically.
cache.source_changed("confluence:hr", text="Leave policy: now 25 days.")
# the next matching read rebuilds just that one unit, lazily
Wire in a real model โ any text-in / text-out LLM works. In v0.4 the synthesizer builds extractive understanding by default (query-independent atomic claims that keep every fact), and the cache does cross-unit recall โ both on automatically:
from coalent import SemanticCache, LLMSynthesizer, OpenAIProvider, OpenAIEmbedder
cache = SemanticCache(
retriever,
LLMSynthesizer(OpenAIProvider(), model="gpt-4o-mini"), # extract=True by default (v0.4)
embedder=OpenAIEmbedder(), # match queries by MEANING (recommended for real use)
)
# Multi-hop across documents? recall is already on; raise its trigger to bridge units:
# SemanticCache(retriever, synth, embedder=..., recall_threshold=0.7)
What's new in v0.5
The pool release โ everything a month-long, pre-registered benchmark war on real news data (MultiHopRAG, 609 articles, third-party questions) taught us, shipped as opt-in features:
preset="multi_hop"โ one argument arms cross-unit recall + the hop-2 bridge with calibrated thresholds. Explicit kwargs always win.- Source widening (
widen_chunks=24) โ a miss-triggered build reads up to N chunks of the dominant source instead of only the retrieved keyhole. Effect in E2E: rebuild churn 460 โ 31, warm-pass accuracy flipped from decaying to compounding. Never fires at ingest. - Provenance admission (
provenance_admission=True) โ an exact-text containment probe prevents duplicate understanding: covered reads serve without building; thin coverage widen-rebuilds in place. - Adaptive hit gate (
adaptive_hit=True) โ self-calibrates against score inflation as the cache grows (fixed thresholds provably absorb everything at scale). - Pool serving preview (
serve="pool",serve_budget=600,pool_header=...) โ serve the token-budgeted, globally ranked fresh-claim pool instead of one routed unit (experimental; the v0.6 read path). Held-out n=605: 0.699 accuracy vs 0.579 for unit serving (z=6.66); statistically ties naive dense RAG's best measured arm at 0.79ร its tokens; 95% null honesty. Stale units' claims are masked from the pool the moment a source changes. fast="auto"โ numpy-accelerated read path when numpy is present (pip install "coalent[fast]"); results are equivalence-pinned to the pure-Python core.- Observability (
on_event=...) โ structured freshness events: builds, rebuilds, admission reuse, stale reads prevented, recall and bridge activity. - Deprecated:
select_floor(superseded by pool serving).
Full numbers and method in the benchmark section and CHANGELOG.
What's new in v0.4
Two capabilities that were an opt-in preview are now the defaults, because they're strictly better on the structured / reuse-heavy corpora Coalent targets โ and free or dormant everywhere else. Both have a one-line escape hatch back to exact v0.3 (extract=False, cross_unit_recall=False).
- ๐ฏ Extractive understanding (
extract=True, default). Instead of a question-shaped prose summary, the synthesizer extracts a query-independent list of atomic, source-grounded claims. The same unit now answers many different later questions, and no number is dropped โ a prose summary silently lost ~40% of the numbers in a source in our tests. - ๐ Cross-unit claim recall (
cross_unit_recall=True, default). When one unit under-covers a query, the cache pools per-claim memory across all fresh units (MaxSim) and surfaces the bridge facts โ answering multi-hop questions naive retrieval structurally can't (evidence in a document that doesn't resemble the question), at zero extra LLM calls. Dormant/free on single-hop; auto-off under a non-semantic embedder. Surfaced asresult.recalled. - ๐ก๏ธ Precision & serving knobs (opt-in, default off):
hit_margin(refuse ambiguous ties),select_floor(serve atoms by meaning, fewer tokens),residual_floor(recover extractor-missed number spans). See the gate ladder for when to reach for each.
Upgrading from v0.3? See UPGRADE-0.3-to-0.4.md โ additive, one behaviour change (understanding is now claims, not prose).
How it works
query โโโบ embed โโโบ semantic cache
โ hit & fresh? โโโบ serve cached understanding (no retrieval, no LLM)
โ miss / stale? โโ
โผ โผ
your Retriever โโโบ your Synthesizer โโโบ Cognition unit
(vector/tool/API) (LLM or passthrough) { understanding
โฒ + raw evidence
โ + provenance }
source changed โโโโโโโโโโโโโ dirties ONLY the units that used that source
- Embed the query and look for an existing unit with similar meaning.
- Hit + fresh โ return the cached understanding (no retrieval, no LLM call).
- Miss or stale โ retrieve, synthesize understanding, retain the raw evidence, record provenance (the exact sources used), and cache it.
- A source changes โ
source_changed(id)marks only the units whose provenance includes that id; they rebuild lazily on the next read.
Unchanged content is skipped via a content-hash compare, so a no-op change costs nothing.
The read path โ a ladder of gates
Coalent keys on what a unit knows โ an embedding of its understanding, not the query's words โ so "how many vacation days?" hits your leave unit, while "exchange policy" does not. Every get(query) then walks a fixed ladder of gates. The defaults are pure cosine โ no extra model, no heavy dependency โ and each gate is a tunable knob. In firing order:
| # | Gate | Default | Fires when โ what happens |
|---|---|---|---|
| 1 | hit_threshold โ match |
auto (OpenAI ~0.33) | best unit's blended score (0.7ยทtopic + 0.3ยทseed) below it โ miss โ retrieve + synthesize a new unit |
| 2 | hit_margin โ precision guard |
0.0 (off) |
top unit beats runner-up by less than the margin โ ambiguous โ build the query's own unit instead |
| 3 | freshness | provenance / TTL | matched unit dirty or expired โ re-materialize it |
| 4 | coverage โ does it answer? | max per-claim cosine | how well the matched unit covers this query (one perfect claim = covered) |
| 5 | cross_unit_recall |
on (v0.4) | coverage < recall_threshold โ pool the best claims across all fresh units (MaxSim), can lift coverage. Free when dormant, no LLM call |
| 6 | coverage_scorer (S2) |
None (off) |
in the ambiguous band [coverage_floor, coverage_ceiling) โ a cross-encoder / NLI / LLM entailment check overrides cosine |
| 7 | coverage_floor โ the RAG floor |
auto (~0.28) | coverage still below it โ escalate: append fresh raw retrieval (no LLM call), so a thin hit falls back to retrieval rather than answering wrong |
| 8 | select_floor โ serve |
None (lexical trim) |
serve the unit's atoms by meaning (per-claim cosine โฅ floor) instead of a keyword trim โ the query-relevant facts, fewer tokens |
Plus one build-time knob โ residual_floor: retain number-bearing source spans the extractor dropped (best per-claim cosine < floor) as extra atoms. Embedding-only.
Other hooks: route_by_claim (late-interaction routing over a fat unit's claims), relevance_gate (BYO reranker before synthesis), depth (synthesis completeness vs cost), calibrate_thresholds() / suggest_thresholds().
Which knob for which workload โ the defaults are tuned for structured, single-hop reuse; reach for these when your data differs:
| Reach forโฆ | When |
|---|---|
recall_threshold โ 0.7 |
multi-hop / cross-document questions โ makes recall bridge partially-covered reads (the full multi-hop win) |
hit_margin > 0 |
contradiction- / collision-heavy corpora where near-ties are ambiguous (costs rebuilds โ leave off on clean data) |
select_floor |
paraphrase-heavy queries over large units (a keyword trim misses when query and claim share no words) |
residual_floor |
messy real prose where the extractor might drop a number (cheap insurance) |
coverage_scorer (S2) |
high-stakes ambiguity where a wrong serve is costly (adds one judge call per borderline read) |
stats() reports hit_rate, escalation_rate, and the active thresholds, so you can see โ and tune โ exactly what the cache is doing.
Bring your own stack
Coalent owns a tiny contract and passes everything else through to your tools.
Retrievers โ a ladder from one-liner to full control:
| You haveโฆ | Use |
|---|---|
| Qdrant / Chroma / pgvector | a shipped adapter (bring-your-own-client) |
| another vector DB | extend BaseVectorRetriever |
| an existing search function | FunctionRetriever |
| several sources to fuse | CompositeRetriever |
| anything else | implement Retriever (one method) |
from coalent import QdrantRetriever
retriever = QdrantRetriever(client=my_client, collection="docs", embed=my_embed)
Synthesizers โ turn evidence into understanding:
LLMSynthesizerโ structured, citation-grounded understanding via your LLM (OpenAI, Anthropic, or any provider). You own theinstructionandfields; Coalent owns the source / strict-JSON / citation envelope, so provenance is captured no matter what you ask for.JSONPassthroughSynthesizerโ for already-structured tool/API JSON: caches it as the understanding, no LLM call.
Embeddings โ how the cache matches queries by meaning. With coalent[openai] installed and OPENAI_API_KEY set, the cache uses OpenAI embeddings automatically; otherwise it warns and falls back to a lexical matcher. Override anytime:
from coalent import SemanticCache, OpenAIEmbedder, FunctionEmbedder
cache = SemanticCache(retriever, synthesizer, embedder=OpenAIEmbedder("text-embedding-3-large"))
# or a local model: embedder=FunctionEmbedder(lambda t: my_model.encode(t).tolist())
Use a real embedder for semantic matching โ the no-key
HashingEmbedderfallback matches on keyword overlap, not meaning, so similar-but-differently-worded queries can miss the cache.
Stores โ durable and restart-safe (the invalidation graph rebuilds on startup):
from coalent import SemanticCache, SQLiteCognitionStore # stdlib, no server
from coalent import RedisCognitionStore # shared across processes / hosts
cache = SemanticCache(retriever, synthesizer, store=SQLiteCognitionStore("coalent.db"))
Any agent framework โ the read API is a single call, so it drops in anywhere. Shipped helpers for graph nodes and MCP tools:
from coalent import make_cognition_node, build_mcp_tools
node = make_cognition_node(cache) # a graph node: state -> { context: fresh understanding }
tools = build_mcp_tools(cache) # expose the cache as an MCP tool
Benchmark
Real-world: MultiHopRAG (v0.5, pre-registered)
609 real news articles, third-party gold questions, answered by gpt-4.1-mini with exact-match grading โ the corpus maximally friendly to chunk retrieval (questions are generated from article sentences), chosen as the adversarial test. We run the fairness control most benchmarks skip: naive's own token-scaling curve on the same stream (k4 0.58 @ 590 tok ยท k6 0.64 @ 882 ยท k9 0.71 @ 1311, n=605 held-out).
- Pool serving (
serve="pool", warmed cache): 0.699 @ ~1,036 tokens โ beats naive k6 (paired McNemar z=3.22) and statistically ties naive's best measured arm at 0.79ร its tokens (z=0.60). We do not claim to beat the curve here; the claim is match-at-fewer-tokens plus what retrieval alone cannot do (freshness, provenance, compounding reuse). - Null honesty (n=100 unanswerable): pool 95% refusal vs naive's 85โ88%.
- Build layer (cold-start, on-the-fly): widened units read a median 23 chunks of their source vs 2 for keyhole builds; rebuild churn 460 โ 31; warm-pass accuracy flipped from decaying (โ0.03) to compounding (+0.04).
- Misattribution 2โ6%; cross-unit recall fired on ~90% of reads (fully instrumented).
Structured regime (synthetic templates, v0.4)
Measured honestly on the structured / reuse workload Coalent is built for โ 64 sources ร 3 seeds = 192 reads per condition, real OpenAI embeddings, a deterministic number-and-attribute accuracy check (no LLM-judge self-preference), and a real dense top-5 retriever shared by both arms (the naive RAG baseline is that retriever). Accuracy is graded escalation-off, so a fallback can't launder a win.
Same accuracy as naive RAG, at a fraction of the context tokens โ across four answer models (95% CIs overlap on every model):
| Answer model | Naive RAG | Coalent v0.4 |
|---|---|---|
| gpt-4o-mini | 0.81 | 0.81 |
| gpt-4.1-mini | 0.90 | 0.85 |
| gpt-4o | 0.90 | 0.87 |
| gpt-4.1 | 0.99 | 0.97 |
| Context tokens / read | 126 | 47 |
And on the metrics that decide whether a cache is trustworthy, not just cheap:
- ๐ฏ Routing โ
route@1 โ 1.00. The cache picks the correct source unit essentially every time. - ๐ก๏ธ Misattribution โ
~0โ2%. How often it serves a number from the wrong source โ the same noise floor as naive RAG's own answerer. (An earlier "27%" traced back to a benchmark bug โ contradictory duplicate sources no router can resolve; found, fixed, documented. See the transparency note.) - ๐ Multi-hop โ naive
0%โ Coalent100%. On bridge questions whose second-hop evidence doesn't resemble the question, single-shot retrieval answers 0%; cross-unit recall answers 100%, at zero extra LLM calls. - ๐ฐ Economics โ build once, reuse cheaply. Understanding costs ~430 tokens / ~4s to build per source (once), then every later read is a warm cosine hit at ~โ the context. Break-even โ 4โ5 reads per source โ cheaper forever after.
Full per-model and per-knob breakdown, methodology, and the benchmark-transparency note (what we found, fixed, and how) in the docs.
CLI
Installing Coalent gives you a coalent command โ a redis-cli for your cognition cache (over a SQLite store):
$ coalent ls
STATUS HITS AGE SRC ID QUERY
fresh 6 2m 2 cog:c95a9d2897e0af what is our leave policy?
dirty 1 12m 1 cog:7f1a0b9c3d2e4f remote work rules
$ coalent show cog:c95a9d2897e0af # understanding + provenance + raw evidence
$ coalent invalidate confluence:98231 # fire a change event
$ coalent stats
Documentation
๐ Full docs: coalent.ai/docs โ concepts, provenance & freshness, retrievers, synthesizers, persistence, worked examples (vector search, MCP & tools, agents), and the complete get() / data-model reference.
Install options
pip install coalent # core, zero required deps
pip install "coalent[openai]" # OpenAI provider (also: anthropic)
pip install "coalent[qdrant]" # vector adapters (also: chroma, pgvector)
pip install "coalent[redis]" # distributed store
pip install "coalent[dev]" # tests + lint + types
Contributing
Issues and PRs welcome. Run the gate before pushing:
pip install -e ".[dev]"
pytest && ruff check src && mypy src
Status & license
Alpha โ the API may change before 1.0. Fully typed (mypy --strict), linted, and tested.
Licensed under Apache-2.0.
Context that's trustworthy, not just cheap.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file coalent-0.5.0.tar.gz.
File metadata
- Download URL: coalent-0.5.0.tar.gz
- Upload date:
- Size: 215.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b4a4790d1effb4b29b7da5bcfda136fd2d2126ba4b7c2e1283cbcf52860dbb1
|
|
| MD5 |
7415deb1ef5b0b9a07af9a66553df7ff
|
|
| BLAKE2b-256 |
883ef8de1176a81a7c0890ae6331bfd0dd7d1f5ba49ae9b8dc04da0561051056
|
File details
Details for the file coalent-0.5.0-py3-none-any.whl.
File metadata
- Download URL: coalent-0.5.0-py3-none-any.whl
- Upload date:
- Size: 78.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88839ac57ef40c15dd88fa7a535bed22f5c2e5b4fa23e287bf211a10e735f2d1
|
|
| MD5 |
95beb23bd2109eb6baae3d39921b4617
|
|
| BLAKE2b-256 |
312ee37dd3d5738db040598e8944244426b1bbb23cb073852c5d172e9d3e8340
|