{
  "markdown": "# ReasonGraph\n\nA graph-based **memory for AI agents**: it ingests facts, auto-extracts entities and cause->effect relations, and discovers connections across independent documents *and* across agent sessions -- with conflict resolution, time-travel, causal tracing, and counterfactuals.\n\n[![PyPI version](https://img.shields.io/pypi/v/reasongraph?color=blue)](https://pypi.org/project/reasongraph/)\n[![Python 3.11+](https://img.shields.io/pypi/pyversions/reasongraph?color=blue)](https://pypi.org/project/reasongraph/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n\n## Why ReasonGraph?\n\nStandard RAG retrieves documents similar to your query. ReasonGraph is a persistent, updatable memory that discovers connections *between* facts that were written independently.\n\nWhen you feed text into `add_texts()`, ReasonGraph automatically extracts **entities** (via GLiNER) and **cause-effect relations** (via a dedicated causal model) that become nodes and typed edges in a graph. Facts that share entities or causal chains get connected -- even if they never reference each other. Multi-hop traversal then walks these connections to build reasoning chains that span multiple sources.\n\nOn top of retrieval it works as agent memory: **scopes/sessions** (agents discover into each other's memory through shared entities), **contradiction resolution** (a new fact soft-supersedes what it contradicts), **time-travel** (`query(as_of=...)`), **causal tracing** (`trace_effects` / `root_causes` / `causal_chain`), **counterfactuals** (`what_if`), and a shippable **MemoryService** over HTTP and MCP.\n\n**Zero config, strong defaults.** `ReasonGraph()` picks the best available entity extractor, causal model, embedder, and reranker automatically -- the eval numbers below come from these defaults. For the SOTA causal model (~0.70 F1) use `pip install reasongraph[causal]` and the graph uses it automatically. The configuration sections are optional depth, not required reading.\n\n## Use it in 60 seconds\n\n**Claude Code / Cursor / any MCP client, hosted (EU, no LLM in the loop):**\n\n```bash\nclaude mcp add --transport http memory https://memory.primaxiom.ai/mcp \\\n  --header \"Authorization: Bearer rgm_YOUR_KEY\"\n```\n\n**Python, in-process:**\n\n```bash\npip install \"reasongraph[all]\"\n```\n\n```python\nfrom reasongraph import ReasonGraph\n\ngraph = ReasonGraph()\ngraph.initialize_sync()\ngraph.add_texts_sync([\"TSMC is building a chip fab in Phoenix, Arizona.\",\n                      \"Arizona ordered water cuts for industrial users in Maricopa County.\"])\nprint(graph.discover_sync(\"water and chips\"))   # a path: water cuts -> Arizona -> TSMC fab\n```\n\n**Any language, over HTTP (self-hosted or hosted):**\n\n```bash\ncurl -X POST https://memory.primaxiom.ai/sessions/notes/memory \\\n  -H \"Authorization: Bearer rgm_YOUR_KEY\" -H \"Content-Type: application/json\" \\\n  -d '{\"text\": \"Apple sources M-series chips from TSMC in Arizona.\"}'\n```\n\nReady-to-copy agents (Groq/OpenAI-compatible research agent, two agents sharing one\nmemory, Claude Code with persistent memory, LangGraph) live in\n[`examples/agents/`](examples/agents/).\n\n### Hosted: ReasonGraph Cloud\n\n[memory.primaxiom.ai](https://memory.primaxiom.ai) runs this library as a service: sign in,\nget a free key (10k requests a month), remote MCP endpoint, browser console and playground.\nExtraction runs with small models on servers PrimAxiom operates (currently in the EU); facts are\nonly sent to an LLM provider if you ask for a synthesized answer. Early access.\n\n## Installation\n\n```bash\npip install reasongraph[all]        # everything included\n```\n\nOr install only what you need:\n\n```bash\npip install reasongraph             # core: in-memory backend, NER extraction, embeddings\npip install reasongraph[gliner]     # + GLiNER entity extraction + hybrid causal (default, recommended)\npip install reasongraph[causal]     # + SOTA span-pointer causal model (~0.70 F1) + hybrid fallback\npip install reasongraph[gliner2]    # + GLiNER2 alternative (single model does entities + causal)\npip install reasongraph[sqlite]     # + SQLite backend with sqlite-vec\npip install reasongraph[postgres]   # + PostgreSQL + pgvector backend\npip install reasongraph[service]    # + HTTP + MCP memory service\npip install reasongraph[fastembed]  # + pure-ONNX embedder / reranker (faster cold start)\n```\n\n## Cross-Source Discovery\n\nTwo reports about different topics. Source A covers TSMC's semiconductor plant. Source B covers Arizona's water crisis. Neither mentions the other's subject.\n\n```python\nimport asyncio\nfrom reasongraph import ReasonGraph\n\nsource_a = [  # Tech industry report\n    \"TSMC announced plans to build a $40 billion semiconductor fabrication plant in Phoenix, Arizona.\",\n    \"The Phoenix fab requires 10 million gallons of purified water daily to cool wafers during the chip etching process.\",\n    \"TSMC signed a long-term supply agreement with Apple to manufacture next-generation M-series processors at the Arizona facility.\",\n    \"Construction delays at the Phoenix site pushed first production to late 2025, raising concerns among TSMC's major customers.\",\n]\n\nsource_b = [  # Environmental report -- never mentions TSMC, semiconductors, or chips\n    \"Arizona declared a water emergency after Lake Mead dropped to its lowest level since the 1930s, threatening water supply for millions.\",\n    \"The Arizona Department of Water Resources ordered mandatory water cuts for all industrial users in Maricopa County, where Phoenix is located.\",\n    \"Intel paused expansion of its Chandler, Arizona chip plant citing water availability concerns and rising operational costs.\",\n    \"Apple warned investors that component shortages from its Asian and North American suppliers could impact iPhone production timelines through 2026.\",\n]\n\nasync def main():\n    async with ReasonGraph() as graph:\n        await graph.add_texts(source_a)\n        await graph.add_texts(source_b)\n        results = await graph.query(\"How does the Arizona water crisis affect semiconductor manufacturing?\")\n        for i, text in enumerate(results, 1):\n            source = \"A\" if text in source_a else \"B\"\n            print(f\"{i}. [Source {source}] {text}\")\n\nasyncio.run(main())\n```\n\n```\n1. [Source B] Intel paused expansion of its Chandler, Arizona chip plant citing water availability concerns and rising operational costs.\n2. [Source B] The Arizona Department of Water Resources ordered mandatory water cuts for all industrial users in Maricopa County, where Phoenix is located.\n3. [Source A] The Phoenix fab requires 10 million gallons of purified water daily to cool wafers during the chip etching process.\n4. [Source B] Arizona declared a water emergency after Lake Mead dropped to its lowest level since the 1930s.\n5. [Source A] TSMC announced plans to build a $40 billion semiconductor fabrication plant in Phoenix, Arizona.\n6. [Source A] TSMC signed a long-term supply agreement with Apple to manufacture M-series processors at the Arizona facility.\n```\n\nResults come from both sources. No single document contains this chain. Here is what happens under the hood:\n\n**ReasonGraph extracts entities and causal relations from each text** (requires an entity+causal extractor, e.g. `pip install reasongraph[gliner]` or `[all]`)**:**\n\n| Text (abbreviated) | Entities | Causal relations |\n|---------------------|----------|------------------|\n| TSMC to build fab in Phoenix, Arizona... | TSMC, Phoenix, Arizona | -- |\n| Phoenix fab requires 10M gallons water... | Phoenix | -- |\n| TSMC supply agreement with Apple... | TSMC, Apple, Arizona | -- |\n| Construction delays at Phoenix site... | TSMC, Phoenix | Construction delays -> first production |\n| Arizona water emergency, Lake Mead... | Arizona, Lake Mead | Lake Mead dropped -> water emergency |\n| Mandatory water cuts in Maricopa County... | Arizona Dept. of Water Resources, Phoenix, Maricopa County | -- |\n| Intel paused Arizona chip plant... | Intel, Chandler, Arizona | -- |\n| Apple warned of component shortages... | Apple | component shortages -> iPhone production timelines |\n\n**Three entities appear in both sources, creating bridge nodes:**\n\n| Bridge entity | Source A connections | Source B connections |\n|---------------|---------------------|---------------------|\n| Arizona | TSMC fab, TSMC-Apple deal | water emergency, Intel pause, water cuts |\n| Phoenix | TSMC fab, water usage, delays | water cuts for industrial users |\n| Apple | TSMC supply agreement | component shortage warning |\n\n**The query traversal path:**\n\nWater crisis query -> finds water-related texts from both sources via embeddings -> follows `Arizona` and `Phoenix` entity edges to discover TSMC's water-intensive fab -> follows `Apple` entity edge from TSMC supply agreement to Apple's component shortage warning. The causal relation `Lake Mead dropped -> water emergency` connects the environmental trigger to the industrial impact.\n\nFull demo: `uv run python examples/cross_source_discovery.py`\n\n## Quick Start\n\n### Using a built-in dataset\n\n```python\nfrom reasongraph import ReasonGraph\n\ngraph = ReasonGraph()\ngraph.initialize_sync()\ngraph.load_dataset_sync(\"financial\")\n\nresults = graph.query_sync(\"What caused the 2008 financial crisis?\")\nfor i, text in enumerate(results, 1):\n    print(f\"{i}. {text}\")\n\ngraph.close_sync()\n```\n\nOutput -- a connected reasoning chain, not just keyword matches:\n\n```\n1. Lehman Brothers filed for bankruptcy in September 2008 after massive MBS losses.\n2. Loose lending standards fueled a housing price bubble across the United States.\n3. Lehman's collapse triggered a global credit freeze as interbank lending stopped.\n4. Mortgage-backed securities built on subprime loans collapsed when defaults surged.\n5. The U.S. government enacted TARP, a $700 billion bailout to stabilize the financial system.\n6. Banks issued subprime mortgages to borrowers with poor credit histories.\n```\n\n### Async API\n\n```python\nimport asyncio\nfrom reasongraph import ReasonGraph\n\nasync def main():\n    async with ReasonGraph() as graph:\n        await graph.load_dataset(\"financial\")\n        results = await graph.query(\"What caused the 2008 crisis?\")\n        for text in results:\n            print(text)\n\nasyncio.run(main())\n```\n\n## Features\n\n- **Cross-source discovery** -- connect facts across independent documents through shared entities and causal relations\n- **Automatic extraction** -- entities (GLiNER `gliner_small-v2.5` by default) and cause->effect relations (a dedicated span-pointer / hybrid causal model) are extracted on add, both on by default; falls back to GLiNER2 then BERT NER when `gliner` is not installed\n- **Agent memory** -- scopes/sessions with cross-session discovery, contradiction resolution (soft-supersede), time-travel (`as_of`), semantic dedup, and auto-forget\n- **Causal reasoning** -- trace downstream effects, root causes, and directed causal paths; ask counterfactual `what_if`\n- **Hybrid search** -- combine embedding similarity, keyword (trigram) matching, or both\n- **Multi-hop traversal** -- follow graph edges to discover connected reasoning chains\n- **Cross-encoder reranking** -- rerank results at each hop with a cross-encoder (`ms-marco-MiniLM-L-6-v2` by default, multilingual mMARCO in the hosted service)\n- **Memory service** -- ready HTTP + MCP server so agents share and query memory\n- **Built-in datasets** -- load curated reasoning graphs for immediate use\n- **Async-first** -- native async API with sync convenience wrappers\n- **Pluggable backends** -- in-memory (zero-config default), SQLite, or PostgreSQL with pgvector\n\n### Causal eval cases\n\n`tests/data/causal_cases.jsonl` (40 reviewed cases) and `tests/data/causal_cases_batch2.jsonl`\n(40 more, 8 domains x 5, 12 non-English) each hold multi-source why-questions with a gold\nchain. Run `python tests/eval_causal_cases.py --cases tests/data/causal_cases_batch2.jsonl`.\nBaseline on batch2 with the default models: chain recovered 100%, ordered 47%, answer 100%,\ncausal chain 65%.\n\n## Models\n\nEvery model slot is pluggable; these are the defaults and what ReasonGraph Cloud runs.\nAll of them are small and run on CPU.\n\n| Step | Library default | ReasonGraph Cloud | Notes |\n|---|---|---|---|\n| Sentence splitting | off (`split=\"sat\"` or `\"regex\"` to enable) | SaT `sat-3l-sm` (wtpsplit) | 84% boundary recovery on messy text vs 40% for the regex splitter |\n| Entities | GLiNER `gliner-community/gliner_small-v2.5` | same | zero-shot, multilingual; 97% recall on a 6-language check, ~19 ms/call |\n| Cause → effect | `Berk/causal-span-pointer-v2` (fine-tuned mDeBERTa-v3, open weights) | same, plus the token gate in the same repo at threshold 0.1 | 0.70 F1 on CausalNewsCorpus dev; the gate keeps plain statements out of the causal graph. `REASONGRAPH_CAUSAL_ONNX=hf://owner/repo/file.onnx` runs the same model through onnxruntime, 2x faster on CPU with identical spans |\n| Embeddings | `all-MiniLM-L12-v2` | `paraphrase-multilingual-MiniLM-L12-v2` (fastembed) | switch when your facts are not only English |\n| Reranker | `cross-encoder/ms-marco-MiniLM-L-6-v2` | `cross-encoder/mmarco-mMiniLMv2-L12-H384-v1` | the multilingual reranker lifted German discovery from 62% to 88% in our eval |\n| Contradiction check | off (`resolve_conflicts=True` needs a resolver) | `Berk/reasongraph-extractor-1.7b` (fine-tuned Qwen3 1.7B, open weights) on llama.cpp, with an embedding pre-filter | 0.95 F1 on the hand-checked pairs; ~0.4 s per pair on two CPU threads |\n| Chat / written answers | none (bring your own `call_model`) | an outside provider, currently `gpt-oss-120b` on Groq | the only step that uses a large model, and only when you use chat or ask for an answer |\n\nEvaluation scripts for each slot are in `tests/` (`eval_causal_extraction.py`,\n`eval_causal_cases.py`) and results are quoted next to the options below.\n\n## Built-in Datasets\n\n| Dataset | Description |\n|---------|-------------|\n| `syllogisms` | Classical syllogistic reasoning chains |\n| `causal` | Cause-effect reasoning with entity annotations |\n| `taxonomy` | Hierarchical concept taxonomy |\n| `financial` | Financial crisis causal chains (2008 crisis, dot-com, inflation, eurozone) |\n| `medical` | Medical causal chains (heart disease, diabetes, infectious disease, cancer) |\n| `analysis_patterns` | Data analysis reasoning: scenario detection, technique selection, implementation patterns |\n\n```python\ngraph.load_dataset_sync(\"financial\")\n```\n\n## Search Modes\n\nThe default (`embedding`) is the best general choice and matches `hybrid` on the eval\nbelow; keyword is for known-term lookups. You rarely need to change this.\n\n```python\n# Pure embedding similarity (default)\nresults = graph.query_sync(\"credit freeze\", search_mode=\"embedding\")\n\n# Pure keyword/trigram matching\nresults = graph.query_sync(\"credit freeze\", search_mode=\"keyword\")\n\n# Hybrid: Reciprocal Rank Fusion of embedding + trigram rankings\nresults = graph.query_sync(\"credit freeze\", search_mode=\"hybrid\")\n\n# Tune the RRF smoothing constant (default 60, lower = more weight to top ranks)\nresults = graph.query_sync(\"credit freeze\", search_mode=\"hybrid\", rrf_k=30)\n```\n\n## Entity and Causal Extraction\n\nEntity extraction and causal extraction are **two independent, both-on-by-default** capabilities. `add_text()` / `add_texts()` use **`gliner_small-v2.5`** for entities (fast, multilingual, highest entity recall) when `gliner` is installed, falling back to GLiNER2 then BERT NER. Override per call with the `extractor` argument -- e.g. `gliner_large-v2.5` for higher precision.\n\n```python\nfrom reasongraph import ReasonGraph, NERExtractor, GLiNER2Extractor\n\ngraph = ReasonGraph()\ngraph.initialize_sync()\n\n# Default: GLiNER gliner_small-v2.5 for entities (+ the default causal model),\n# falling back to GLiNER2 then BERT NER\nentities = graph.add_text_sync(\"Apple released the iPhone in 2007.\")\nprint(entities)  # ['Apple', 'iPhone']\n\n# Explicit: force BERT NER even if a GLiNER model is installed\nentities = graph.add_text_sync(\"Apple released the iPhone in 2007.\", extractor=NERExtractor())\n\n# Explicit: GLiNER2 with custom entity types\ngliner = GLiNER2Extractor(entity_types=[\"company\", \"product\", \"date\"])\nentities = graph.add_text_sync(\"Apple released the iPhone in 2007.\", extractor=gliner)\n\n# Conversational memory: ChatExtractor also captures preference/plan/topic,\n# so \"hard techno\" or \"visit\" become bridgeable nodes -- not just people/places\nfrom reasongraph import ChatExtractor\nentities = graph.add_text_sync(\n    \"I love hard techno and plan to visit Berlin.\", extractor=ChatExtractor()\n)  # ['Berlin', 'hard techno', 'visit']\n\n# Any callable works\nentities = graph.add_text_sync(\"some text\", extractor=lambda t: [\"custom\"])\n```\n\n### Causal reasoning (default on)\n\nCausality is the headline feature, so causal extraction runs **by default**\n(opt out per call with `causal=False`). Directed cause->effect relations become\nfirst-class **typed edges** (`label=\"causes\"`) in the graph, distinct from\nanonymous entity bridges, and `discover()` returns them per fact:\n\n```python\ngraph.add_text_sync(\"Heavy rainfall caused severe flooding.\")\n# -> typed edge  heavy rainfall --causes--> severe flooding\n\nfor fact in graph.discover_sync(\"flooding\"):\n    print(fact[\"content\"], fact[\"causes\"])  # [{'cause': 'Heavy rainfall', 'effect': 'severe flooding'}]\n```\n\n### Causal chain tracing\n\nBecause cause->effect edges are directed and first-class, you can **walk the causal\ngraph** -- something a flat vector store cannot do. Trace downstream impact, trace\nback to root causes, or find a directed causal path between two facts:\n\n```python\ngraph.add_texts_sync([\n    \"Heavy rainfall caused flooding.\",\n    \"Flooding caused power outages.\",\n    \"Power outages caused hospital disruptions.\",\n])\n\ngraph.trace_effects_sync(\"Heavy rainfall caused flooding.\")[\"terminals\"]\n# e.g. -> ['hospital disruptions']       # downstream impact\n\ngraph.trace_causes_sync(\"Power outages caused hospital disruptions.\")[\"terminals\"]\n# e.g. -> ['rainfall']                   # upstream causes (same as root_causes_sync)\n\ngraph.causal_chain_sync(\"Heavy rainfall caused flooding.\",\n                        \"Power outages caused hospital disruptions.\")\n# -> ordered causal hops, each cited to the fact that asserted it\n```\n\nThe exact spans depend on the causal extractor; a hop chains when one fact's effect\nspan matches the next fact's cause span. Each hop is tagged with the fact that\nasserts it, its scopes, and a `cross_session` flag; with a `conflict_resolver`\nconfigured, retired (superseded) facts are skipped by default (`include_superseded=True`\nkeeps them). Tunable with `max_depth` (default 6) and `max_visited` (default 1000).\nExposed to agents as the `trace_memory` MCP tool and the `/trace` HTTP endpoint.\n\n### Counterfactual: what breaks if a fact were false\n\nBecause the causal edges are first-class, you can ask the inverse of a trace:\n**if one fact were false, which downstream effects collapse?** `what_if` prunes a\nfact hypothetically (no graph mutation), re-walks reachability, and reports which\neffect spans lost **all** causal support versus which **survived** via an alternate\npath. Only edges the pruned fact *solely* supports are removed -- an effect another\nfact also explains still stands.\n\n```python\ngraph.what_if_sync(\"Flooding caused power outages.\")\n# {\n#   'pruned': 'Flooding caused power outages.',\n#   'origin': 'Flooding caused power outages.',     # walk start (== pruned unless origin= given)\n#   'pruned_edges': [{'cause': 'flooding', 'effect': 'power outages'}],\n#   'collapsed': [                                 # lost their only causal path\n#       {'span': 'power outages', 'fact': 'Flooding caused power outages.', 'depth': 0, ...},\n#       {'span': 'hospital disruptions', 'fact': 'Power outages caused hospital disruptions.', 'depth': 1, ...},\n#   ],\n#   'survived': [],                                # spans an alternate path rescued\n# }\n```\n\nPass `origin=` to measure collapse relative to an upstream fact, or\n`direction='causes'` to see which upstream causes become orphaned. Exposed as the\n`what_if_memory` MCP tool and the `/what_if` HTTP endpoint.\n\nThe default causal extractor picks the **best available** backend. When the\n`causal-span-model` package is installed it uses the **span-pointer model**\n(`CausalPointerExtractor`): a fine-tuned mDeBERTa-v3 that scores **~0.70 F1** on the\nCausal News Corpus Subtask-2 official scorer -- beating the 0.627 organizer baseline,\nthe hybrid, and a few-shot LLM baseline (~0.24-0.41). It is trained on English but\nmultilingual at inference (script-aware segmentation, verified on es/fr/de/pt/tr/ru/ar\nand zh/ja) and has a built-in causal gate, so it returns nothing on non-causal text.\n\nThe built-in gate can be replaced by a **decoupled embedding gate**: a small\nclassifier on sentence embeddings (train one with `scripts/train_embed_gate.py` in\ncausal-span-model; it saves a `.joblib`). It costs a millisecond per sentence, is\nretrained on any negative mix without touching the span heads, and on our causal\neval it gave fewer, more precise edges than the built-in gate. Pass a local path or\nan `hf://owner/repo/file.joblib` reference:\n\n```python\nReasonGraph(causal_extractor=CausalPointerExtractor(\n    model=\"Berk/causal-span-pointer-v2\", gate_threshold=1.0,          # built-in gate off\n    embed_gate=\"hf://Berk/causal-span-pointer-v2/embed_gate_mlp.joblib\",\n    embed_gate_threshold=0.9))                                        # keep P(causal) >= 0.9\n```\n\n`causal_chain` also bridges facts that phrase one event differently (\"the system\nthrottles performance\" -> \"Throttling performance\", or a plain root fact whose\nwords reappear in the next cause span), so directed chains survive wording changes\neven without `span_link_threshold`.\n\nOtherwise it falls back to the **hybrid** (`HybridCausalExtractor`): a fast,\nmodel-free multilingual **cue pass** handles explicit and reversed phrasing with\ncorrect direction, and sentences with no causal connective (implicit causality)\nfall through to **`gliner-relex-multi`** (Apache-2.0, mDeBERTa, ~100 languages).\nOn a four-regime probe set (explicit / multilingual / implicit / reversed) the\nhybrid reached **100% directed-pair recall vs 61-79%** for either part alone --\neach covers the other's blind spot -- and most sentences never touch the model,\nso the average cost is low. Reproduce with `tests/bench_causal_extractors.py`.\n\n```python\nfrom reasongraph import CausalPointerExtractor, HybridCausalExtractor, GlinerRelexExtractor\n\nReasonGraph()                                          # best available (pointer if installed, else hybrid)\nReasonGraph(causal_extractor=CausalPointerExtractor())  # force the span-pointer model\nReasonGraph(causal_extractor=HybridCausalExtractor())  # force the hybrid\nReasonGraph(causal_extractor=GlinerRelexExtractor())   # relex model only\nReasonGraph(causal_extractor=False)                    # disable causal extraction\n```\n\n`pip install reasongraph[causal]` installs both the pointer model\n(`causal-span-model`) and the hybrid (`gliner`), so the graph uses the SOTA pointer\nby default and falls back to the hybrid automatically. If neither is available the\ndefault warns once rather than silently dropping causality; `add_text(..., causal=True)`\nraises when no causal extractor can be resolved.\n\n### Sentence splitting at ingest\n\nEvery model in the pipeline is trained on single sentences, so a paragraph pushed as one\nfact hurts entities, causal spans and retrieval alike (on our 39-case causal eval, chain\nrecall drops from 79% to 10%). Pass a splitter and each text becomes one fact per sentence:\n\n```python\nReasonGraph(sentence_splitter=\"sat\")          # Segment-any-Text, 85 languages: pip install reasongraph[split]\nReasonGraph(sentence_splitter=\"regex\")        # dependency-free fallback (punctuation + newlines)\ngraph.add_texts([paragraph], split=True)      # or per call; split=False keeps a text whole\n```\n\nThe service reads `REASONGRAPH_SPLIT_SENTENCES=sat|regex`; pushes accept `split: true/false`.\n\n## Deep memory integration: the memory loop\n\nNo tools, no prompts to write: wrap any chat model and every exchange becomes memory, and\nwhatever is relevant comes back by itself before the next call.\n\n```python\nfrom reasongraph import ReasonGraph, MemoryLoop\n\ngraph = ReasonGraph()                                  # or your Postgres-backed graph\nloop = MemoryLoop(graph, session=\"support-chat\", max_facts=8)\n\nhistory = [{\"role\": \"user\", \"content\": \"Why did the Rotterdam warehouse lose power?\"}]\nreply, context = loop.chat_sync(call_model, history, system=\"You are a careful assistant.\")\n# call_model is any fn(messages) -> str: OpenAI-compatible, Claude, Ollama, llama.cpp\n# context.facts  -> what was recalled (with sources and cause->effect links)\n# context.roots  -> for why-questions, the root cause(s) the chain walks back to;\n#                   they are spelled out in the injected block so a small model\n#                   answers with the root, not only the nearest cause\n# the question and the reply are now remembered in \"support-chat\"\n```\n\nThe loop also remembers the conversation itself. Those stored turns are recalled like any\nother fact, but judged after everything else: the question you just asked and an earlier\n\"I don't know\" would otherwise score highest and take every slot.\n`graph.forget(scopes)` erases a session (or a tenant, or a test run): facts and the entities\nonly they linked are deleted; a sentence also held elsewhere is detached, not deleted.\n\n`loop.messages(history)` returns the message list with the recalled facts injected as a\nsystem message, if you want to call the model yourself; `loop.observe(user, assistant)`\nstores an exchange. Options: `max_facts` / `max_chars` (context budget), `min_score`\n(no unrelated filler), `rerank_min` (an optional cross-encoder cutoff on top of it:\ncosine cannot tell \"same topic\" from \"answers this\", the reranker can; -4 with the\ndefault reranker), `extend_query` (when a why-question's chain ends in a root cause\nno recalled fact states, one more targeted query fetches the plain fact behind it),\n`observe_user` / `observe_assistant`, `redact` (a function that\ndrops or rewrites text before it is stored), `resolve_conflicts`. The hosted service\nexposes the same loop as `POST /chat`. Example agent: `examples/agents/memory_loop_agent.py`.\n\n## Fast inference (optional, pure ONNX)\n\nThe defaults already deliver the eval quality below; this is purely a\nspeed/memory optimization. Every model slot is pluggable, so you can trade the\nPyTorch defaults for CPU-optimized ONNX models at equal-or-better quality.\nMeasured on the 32-case mixed-domain eval:\n\n```python\nfrom reasongraph import ReasonGraph, FastEmbedEmbedder, FastEmbedReranker\n\ngraph = ReasonGraph(\n    embed_model=FastEmbedEmbedder(\"sentence-transformers/all-MiniLM-L6-v2\"),\n    rerank_model=FastEmbedReranker(\"Xenova/ms-marco-MiniLM-L-6-v2\"),\n)\n```\n\n- **Reranker → `Xenova/ms-marco-MiniLM-L-6-v2`**: the ONNX build of the default\n  reranker, so scores (and eval quality) are identical, but cold start drops\n  from ~2.4s to ~0.03s.\n- **Embedder → `all-MiniLM-L6-v2` (ONNX)**: ~2.3x faster load, equal-or-better\n  eval quality.\n- **Full ONNX pipeline**: ~3x faster cold start and ~23% less RAM at\n  equal-or-better quality; per-query latency rises (~12ms to ~100ms), a good\n  trade when cold start and memory matter more than warm latency.\n- Multilingual embedder (`paraphrase-multilingual-MiniLM-L12-v2`) is available\n  as an option; it costs a few points of English quality.\n\nRequires `pip install reasongraph[fastembed]`. Benchmark any configuration with\n`tests/bench_pipeline.py`.\n\n### Choosing an extractor (optional)\n\nYou don't need to choose -- the default (`gliner_small-v2.5` for entities plus the\ndefault causal model) is the recommended, benchmarked setup. This section is the\nevidence behind that default and the alternatives for special cases; swap the entity\nmodel with the `extractor` argument if you have a specific need (reproduce the numbers\nwith `tests/bench_extractors.py`):\n\n- **`GlinerExtractor`** (default) -- GLiNER v1 zero-shot with convert-and-cache ONNX\n  inference (fast, flexible entity types; entities only -- causal relations come from\n  the separate default causal model). Defaults to `gliner-community/gliner_small-v2.5`,\n  which on a 10-language WikiANN benchmark led on entity recall (**86%**, vs GLiNER2's\n  74%) at **~67 ms/call and ~2.2 GB** -- and unlike GLiNER2 it holds up on\n  Korean/Arabic/Turkish/Russian. The checkpoint matters a lot: the older\n  `urchade/gliner_multi-v2.1` scores ~12%, so pin the model and benchmark with\n  `tests/bench_ner_multilingual.py`.\n- **`GLiNER2Extractor`** -- a single model that does entity types **and** causal\n  relations in one pass. Reach for it when you want one model for both, but it is the\n  heaviest (loads slowly, ~4.6 GB) and lower on multilingual entity recall.\n- **`OnnxTokenClassifierExtractor`** -- runs any BIO token-classification model\n  exported to ONNX, decoding entities from the model's own `id2label`. Fast\n  (~30 ms/call) and multilingual with a suitable model; the label scheme is the\n  model's, so a specialized place model or a custom general NER both drop in\n  with no code change.\n\nSize sweep (same WikiANN benchmark) -- bigger is not uniformly better:\n\n| model | infer | RAM | recall | prec | F1 |\n|---|---|---|---|---|---|\n| `gliner_small-v2.5` | 67 ms | 2.2 GB | 86% | 73% | 79% |\n| `gliner_medium-v2.5` | 73 ms | 2.7 GB | 84% | 75% | 79% |\n| `gliner_large-v2.5` | 142 ms | 4.8 GB | 86% | 84% | 85% |\n| `knowledgator/gliner-x-base` | 151 ms | 4.2 GB | 87% | 79% | 83% |\n| GLiNER2 | 250 ms | 4.8 GB | 74% | 84% | 79% |\n\nSmall ties large on recall; large's extra size buys precision (best F1). Medium is\ndominated -- skip it. `large-v2.5` beats GLiNER2 outright (same precision, higher\nrecall, faster, far stronger on Arabic/Korean). `knowledgator/gliner-x-base`\n(20+ languages) edges recall/precision above `small-v2.5` but needs `stanza` +\n`langdetect` (with per-language models fetched at runtime), runs ~7x slower, and\nis no better on the WikiANN Chinese reconstruction -- so `small-v2.5` stays the\ndefault; reach for `x-base` only when precision matters more than latency.\n\nRunning `gliner_small-v2.5` through ONNX (`GlinerExtractor(onnx=True)`) cuts\ninference from ~67 ms to **~12 ms/call** with recall preserved -- the fastest\nhigh-recall multilingual option (the conversion is cached on first use).\n\nRough guide: **`gliner_small-v2.5`** for the best speed/RAM at high recall (add\n`onnx=True` for ~12 ms/call); **`gliner_large-v2.5`** for the best overall quality\nand a strict upgrade over GLiNER2 on multilingual; **GLiNER2** only when you need\nits causal-relation extraction; **place ONNX** for the fastest location-heavy path.\n\n## Scopes\n\nScopes are free-text tags on facts (`\"user-alice\"`, `\"topic-economy\"`, `\"session-42\"`)\n-- **not partitions**. The graph stays shared: a fact can carry several scopes at\nonce, and multi-hop reasoning follows shared entities across every scope. A scope\non `query()` only narrows where the search *seeds*; traversal still reaches\nconnected facts in other scopes.\n\n```python\nawait graph.add_texts(alice_facts, scopes=[\"user-alice\"])\nawait graph.add_texts(economy_facts, scopes=[\"topic-economy\"])\n# One fact can belong to several scopes at once\nawait graph.add_texts(shared, scopes=[\"user-alice\", \"topic-economy\"])\n\n# Seeds come from user-alice; reasoning still bridges into topic-economy facts\nresults = await graph.query(\"Will it get harder to afford a home?\", scopes=[\"user-alice\"])\n```\n\nAdding the same content under a new scope unions the tags (never drops the old\nones). For a hard boundary where a query can only reach its own scope's facts, pass\n`isolate=True` (see [Multi-tenant and production](#multi-tenant-and-production)).\nFull demo: `uv run python examples/scoped_reasoning.py`\n\n## Backends\n\nBy default, `ReasonGraph()` uses a pure Python in-memory backend (`MemoryBackend`). This works everywhere with zero dependencies beyond numpy. For persistence, pass a file path to save/load as JSON:\n\n```python\nfrom reasongraph import ReasonGraph, MemoryBackend\n\n# In-memory only (default)\ngraph = ReasonGraph()\n\n# In-memory with JSON file persistence (loads on init, saves on close)\ngraph = ReasonGraph(backend=MemoryBackend(file_path=\"graph.json\"))\n```\n\n### SQLite Backend\n\nFor larger graphs or concurrent access, use the SQLite backend with `sqlite-vec` for vector search. Requires `pip install reasongraph[sqlite]`.\n\n```python\nfrom reasongraph import ReasonGraph\nfrom reasongraph.backends import SqliteBackend\n\ngraph = ReasonGraph(backend=SqliteBackend(db_path=\"graph.db\"))\n```\n\n### PostgreSQL Backend\n\n```python\nfrom reasongraph import ReasonGraph\nfrom reasongraph.backends import PostgresBackend\n\ngraph = ReasonGraph(backend=PostgresBackend(database_url=\"postgresql://user:pass@localhost/db\"))\n```\n\nRequires `pip install reasongraph[postgres]` and the `pgvector` + `pg_trgm` extensions enabled on your database.\n\n## Evaluation: Mixed-Domain Reasoning\n\nWe evaluate reasoning quality by loading all 6 built-in datasets into a single graph (~130 text nodes, ~104 entity nodes, ~280 edges) and testing whether the library can trace the correct causal chains, syllogistic proofs, taxonomic hierarchies, and data analysis patterns -- without being distracted by unrelated facts from other domains.\n\n32 test cases simulate agent-style queries like *\"I need to understand what caused the 2008 financial crisis\"*, *\"How does insulin resistance lead to kidney failure?\"*, or *\"I have two numeric columns, check if related\"* and check whether the returned reasoning chain matches the expected ground truth.\n\n**Per-domain results (hybrid search, `top_k=5`, `hops=4`, `rerank_top_k=4`):**\n\n| Domain | Cases | Chain Completeness | Recall@5 | Precision@5 | Domain Accuracy |\n|--------|------:|--------------------|----------|-------------|-----------------|\n| Causal | 5 | 100% | 100% | 92% | 100% |\n| Financial | 6 | 100% | 82% | 60% | 100% |\n| Medical | 5 | 100% | 92% | 76% | 92% |\n| Syllogisms | 5 | 100% | 100% | 92% | 85% |\n| Taxonomy | 3 | 100% | 83% | 53% | 92% |\n| Analysis Patterns | 8 | 96% | 75% | 45% | 96% |\n| **Overall** | **32** | **99%** | **88%** | **68%** | **95%** |\n\n32/32 cases pass (>= 50% chain completeness). Split reranking gives chain continuations (text-to-text edges) priority over bridge discoveries (entity-to-text edges), keeping traversal focused.\n\n**Search mode comparison:**\n\n| Mode | Chain Completeness | Recall@5 | Precision@5 | Domain Accuracy |\n|------|-------------------|----------|-------------|-----------------|\n| Embedding | 99% | 88% | 68% | 95% |\n| Keyword | 0% | 0% | 0% | 0% |\n| Hybrid | 99% | 88% | 68% | 95% |\n\nKeyword-only mode scores 0% because the eval queries are natural language questions that don't substring-match the dataset's declarative statements. This is expected -- keyword search is designed for known-term lookups, not question answering.\n\nReproduce: `uv run python tests/eval_financial_reasoning.py`\n\n## API Reference\n\n### `ReasonGraph(backend=None, embed_model=None, rerank_model=None, forget_after=30, forget_every=None, synthesizer=None, causal_extractor=None, isolate_traversal=False, conflict_resolver=None)`\n\n- `causal_extractor`: `None` builds the best available causal extractor lazily (the span-pointer model when `causal-span-model` is installed, else the hybrid); `False` disables causal extraction; a callable/object with `extract_causal` uses it.\n- `isolate_traversal`: graph-wide default for whether a scoped query confines traversal to its scopes (multi-tenant). Off keeps cross-scope discovery; override per call with `query(..., isolate=...)`.\n- `conflict_resolver`: enables contradiction resolution (soft-supersede) on write and retired-fact filtering on read (see [Multi-tenant and production](#multi-tenant-and-production)).\n\n**Ingest**\n\n| Method | Description |\n|--------|-------------|\n| `add_nodes(nodes, scopes=None)` | Add `(content, type)` tuples to the graph |\n| `add_edges(edges)` | Add `(from, to)` or `(from, to, label)` content edges (label e.g. `\"causes\"`) |\n| `add_text(text, extractor=None, scopes=None, causal_extractor=None, causal=None, dedup_threshold=None, resolve_conflicts=None)` | Add text with entity + causal extraction; `causal=False` disables, `True` forces (raises if unavailable); `dedup_threshold` drops near-duplicates (unioning scopes); `resolve_conflicts` soft-supersedes contradicted facts when a `conflict_resolver` is set |\n| `add_texts(texts, extractor=None, causal_extractor=None, scopes=None, causal=None, dedup_threshold=None, resolve_conflicts=None)` | Batch form of `add_text` (causal on by default) |\n\n**Retrieve**\n\n| Method | Description |\n|--------|-------------|\n| `query(query, top_k=5, hops=4, rerank_top_k=4, search_mode=\"embedding\", rrf_k=60, recency_weight=0.0, scopes=None, isolate=None, include_superseded=False, as_of=None)` | Search and traverse the graph. `recency_weight` in [0,1] blends recency into ranking; `scopes` narrows the seeds (traversal still crosses scopes unless `isolate=True`); `as_of=<datetime>` time-travels to what was current then; `include_superseded=True` keeps retired facts |\n| `query_detailed(...)` | Same signature as `query`, but returns `{content, score, created_at, scopes}` per hit for thresholding/dedup |\n| `discover(query, top_k=5, hops=4, search_mode=\"embedding\", rrf_k=60, scopes=None, max_results=10, max_visited=1000, isolate=None, include_superseded=False)` | Like `query`, but returns *connection paths* -- how each fact links back to a seed via bridging entities, tagged with scopes, flagging cross-session links, and listing each fact's directed `causes` relations. The walk stops after `max_visited` nodes |\n| `answer(query, use_discover=True, top_k=5, hops=4, search_mode=\"embedding\", scopes=None, max_results=10)` | Rephrase the retrieved facts/paths into logical free text via the pluggable `synthesizer` |\n\n**Causal reasoning**\n\n| Method | Description |\n|--------|-------------|\n| `trace_effects(content, max_depth=6, scopes=None, isolate=None, include_superseded=False, max_visited=1000)` | Forward causal walk: `{origin, chain, terminals}` for downstream impact |\n| `trace_causes(content, ...)` | Backward causal walk: what led to `content` |\n| `root_causes(content, ...)` | The root cause spans behind `content` (backward-walk terminals) |\n| `causal_chain(from_content, to_content, max_depth=6, scopes=None, isolate=None, include_superseded=False)` | Ordered causal hops linking two facts, or `None` |\n| `what_if(content, origin=None, direction=\"effects\", max_depth=6, scopes=None, isolate=None, include_superseded=False, max_visited=1000)` | Counterfactual: prune a fact and report `collapsed` vs `survived` downstream spans |\n\n**Update, forget, temporal**\n\n| Method | Description |\n|--------|-------------|\n| `delete(content, purge_orphans=False)` | Remove a node and its incident edges by exact content; `purge_orphans=True` also removes entities left dangling |\n| `supersede(old_content, new_text, extractor=None, purge_orphans=False)` | Replace a stale fact: add `new_text`, then delete `old_content` |\n| `supersession_history(content)` | Audit `{supersedes, superseded_by}` for a fact |\n| `delete_stale()` | Remove nodes not accessed within `forget_after` days |\n| `maybe_forget()` | Throttled `delete_stale()`: sweeps at most once per `forget_every` seconds (no-op when `forget_every` is `None`) |\n\n**Datasets and inspection**\n\n| Method | Description |\n|--------|-------------|\n| `load_dataset(name)` | Load a built-in dataset |\n| `get_all_nodes(scopes=None)` / `get_all_edges()` | Inspect graph contents (nodes optionally filtered by scope) |\n\nLifecycle is `initialize()` / `close()`, or use `async with ReasonGraph() as graph:`. All methods are async; every one has a `_sync` twin with the same parameters (e.g. `query_sync`, `what_if_sync`, `add_text_sync`).\n\n`embed_model` accepts a model name (`str`), a `SentenceTransformer`, or any\nobject/callable that encodes text. The encoder must take a `str` (returning one\nvector) or a `list[str]` (returning one vector per text); numpy, torch, or list\noutputs are all accepted. This lets a host reuse an embedder it already runs\ninstead of loading a second stack:\n\n```python\ndef encode(text_or_texts):\n    # reuse your own embedding library; return list[float] or list[list[float]]\n    ...\n\ngraph = ReasonGraph(embed_model=encode)\n```\n\n## Agent memory service\n\nA ready service turns reasongraph into shared, discoverable memory for many\nagents. **Knowledge sessions are scopes**: an agent pushes memory into its\nsession, and a query seeds from that session but traversal crosses all sessions\n-- so agents **discover connections into each other's memory** through shared\nentities. `pip install reasongraph[service]`.\n\n```python\nfrom reasongraph.service import MemoryService\nfrom reasongraph.backends import PostgresBackend\n\nservice = MemoryService(backend=PostgresBackend(\"postgresql:///memory\"),\n                        synthesizer=my_small_llm)   # synthesizer is optional\n\nawait service.push(\"research-bot\", \"TSMC is building a chip fab in Arizona.\")\nawait service.push(\"news-bot\", \"Arizona declared a water emergency.\")\n\n# research-bot discovers news-bot's fact via the shared 'Arizona' entity\npaths = await service.discover(\"Arizona\", session=\"research-bot\")\nanswer = await service.answer(\"Arizona\", session=\"research-bot\")   # logical free text\n```\n\nExpose it over **HTTP** (`reasongraph.service.http.create_app`) or **MCP**\n(`reasongraph.service.mcp_server.create_mcp`) -- the HTTP `query`/`discover`\nendpoints take a `synthesize` flag that adds the free-text `answer`. The demo\n`uv run python examples/agent_memory_service.py` pushes an economy / supply-chain\n/ energy / health / policy world across five agent sessions and shows a markets\nquery reaching a Taiwan drought and a chip fab recorded by other agents.\n\n**HTTP endpoints**: `POST /sessions/{session}/memory` (and `/batch`; pass\n`resolve_conflicts: true` to check nearby facts for contradictions), `/query` (supports\n`as_of` and `include_superseded` for time-travel), `/discover`, `/causal_chain`,\n`/supersede`, `/delete`, `/history`, `/trace`, `/what_if`, `/forget`, `GET /sessions`,\n`/stats`, plus `/health` and `/ready` probes.\n\n**MCP tools**: `push_memory`, `query_memory`, `query_memory_detailed`,\n`discover_connections`, `causal_chain_memory`, `trace_memory`, `what_if_memory`, `answer`,\n`update_memory`, `delete_memory`, `memory_history`, `forget_stale`, `list_sessions`.\n\n### Synthesizers\n\n`answer()` and the `synthesize` flag rephrase retrieved facts and their\nconnection paths into logical free text. The core stays model-free -- pass any\n`callable(query, context) -> str`, or one of the shipped adapters:\n\n```python\nfrom reasongraph import TemplateSynthesizer, PromptSynthesizer, TransformersSynthesizer\n\nReasonGraph(synthesizer=TemplateSynthesizer())            # deterministic, no model\nReasonGraph(synthesizer=PromptSynthesizer(my_generate))   # bring any LLM: generate(prompt) -> str\nReasonGraph(synthesizer=TransformersSynthesizer())        # local small LLM (Qwen2.5-0.5B-Instruct)\n```\n\n`PromptSynthesizer` builds the prompt (question + facts + cross-session bridges)\nand calls your `generate` (sync or async); `TransformersSynthesizer` runs a small\ninstruct model locally on the torch/transformers stack already pulled in by\n`sentence-transformers`.\n\n### Deploy\n\nAn env-driven entrypoint wires the backend, embedder, and synthesizer from\nenvironment variables. Run the Postgres-backed stack with Docker:\n\n```bash\ndocker compose up --build          # Postgres (pgvector) + the service on :8000\ncurl localhost:8000/stats\n```\n\nOr serve directly (`pip install reasongraph[service]` adds the `reasongraph-serve`\nconsole script and the ASGI factory):\n\n```bash\nREASONGRAPH_BACKEND=postgres \\\nREASONGRAPH_DATABASE_URL=postgresql:///memory \\\nREASONGRAPH_SYNTHESIZER=template \\\nreasongraph-serve            # or: uvicorn reasongraph.service.app:create_app_from_env --factory\n```\n\n| Variable | Default | Purpose |\n|----------|---------|---------|\n| `REASONGRAPH_BACKEND` | `memory` | `memory` \\| `sqlite` \\| `postgres` |\n| `REASONGRAPH_DATABASE_URL` | -- | Postgres URL, sqlite path, or memory JSON path |\n| `REASONGRAPH_EMBED_MODEL` | built-in | Model name; prefix `fastembed:` for pure-ONNX |\n| `REASONGRAPH_SYNTHESIZER` | `template` | `none` \\| `template` \\| `transformers` |\n| `REASONGRAPH_SYNTH_MODEL` | built-in | Instruct model for the `transformers` synthesizer |\n| `REASONGRAPH_FORGET_AFTER` / `REASONGRAPH_FORGET_EVERY` | `30` / off | Auto-forget window (days) and sweep interval (seconds). When the interval is set the service runs the sweep on a background task. |\n| `REASONGRAPH_ISOLATE` | off | Confine traversal to the query session (multi-tenant). Off keeps cross-session discovery. |\n| `REASONGRAPH_RESOLVE_CONFLICTS` | off | Enable contradiction resolution (soft-supersede) with the default NLI resolver. |\n| `REASONGRAPH_API_KEY` | -- | When set, data endpoints require it (`Authorization: Bearer` or `X-API-Key`); `/health` and `/ready` stay open. |\n| `REASONGRAPH_DEFER_EXTRACT` | off | Run entity/causal extraction in a background worker (off the event loop) so pushes return immediately. |\n| `REASONGRAPH_SPAN_LINK_THRESHOLD` | off | Cosine threshold (e.g. `0.85`) above which a new cause/effect span is tied (`same_as`) to an existing causal span, so `trace_*` / `causal_chain` cross facts that phrase the same event differently. |\n| `REASONGRAPH_CAUSAL_MODEL` | `berk/causal-span-pointer-mdeberta` | HF repo id or local dir of the span-pointer model. |\n| `REASONGRAPH_CAUSAL_GATE_THRESHOLD` | `0.5` | Built-in gate: P(non-causal) above which the pointer abstains; `1.0` turns it off. |\n| `REASONGRAPH_CAUSAL_EMBED_GATE` | off | Path or `hf://owner/repo/file.joblib` of an embedding-gate classifier; texts under `REASONGRAPH_CAUSAL_EMBED_GATE_THRESHOLD` (default `0.9`) get no relations. |\n| `REASONGRAPH_DEDUP_THRESHOLD` | off | Cosine threshold (e.g. `0.95`) above which a pushed fact is treated as a paraphrase of an existing one: scopes are unioned, nothing new is stored. |\n| `REASONGRAPH_HOST` / `REASONGRAPH_PORT` | `0.0.0.0` / `8000` | Bind address and port for `reasongraph-serve`. |\n\nUse a persistent backend (PostgresBackend) for real multi-agent concurrency.\n\n### Multi-tenant and production\n\nBy default the graph is shared: a scoped query seeds from its session but the walk\ncrosses sessions, which is the cross-session discovery feature. For a\nconfidentiality boundary between tenants, turn on **traversal isolation** so a query\ncan only reach its own session's facts:\n\n```python\nReasonGraph(isolate_traversal=True)               # graph-wide default\ngraph.query(\"...\", scopes={\"tenant-a\"}, isolate=True)   # or per query\n```\n\nOther production controls:\n\n- **Auth**: `create_app(service, api_key=\"...\")` (or `REASONGRAPH_API_KEY`) gates every\n  data endpoint; the MCP server exposes the same tools.\n- **Structured results**: `query_detailed(...)` (and the HTTP `detailed` flag /\n  `query_memory_detailed` MCP tool) return `{content, score, created_at, scopes}` for\n  thresholding, dedup, and \"remembered on <date>\".\n- **Erasure**: `delete(content, purge_orphans=True)` / `supersede(..., purge_orphans=True)`\n  also remove entities left dangling by the deletion (right-to-be-forgotten); shared\n  entities survive. Exposed as `delete_memory` / `update_memory` MCP tools.\n- **Semantic dedup**: `add_text(..., dedup_threshold=0.95)` drops near-duplicate\n  restatements instead of accumulating them, unioning scopes onto the kept fact.\n- **Contradiction resolution**: `ReasonGraph(conflict_resolver=NLIConflictResolver())`\n  (or `REASONGRAPH_RESOLVE_CONFLICTS=1`) soft-supersedes facts a new one contradicts\n  -- a `supersedes` edge drops the old fact from default `query`/`discover` recall\n  while keeping it auditable and retrievable via `include_superseded=True`;\n  `supersession_history(fact)` shows what replaced what. The resolver is pluggable\n  (any object with `contradictions(new, candidates)`): the `NLIConflictResolver`\n  cross-encoder needs no LLM but can over-flag complements (it treats \"works in\n  Munich\" vs \"lives in Berlin\" as a conflict), while `LLMConflictResolver(generate)`\n  brings any LLM and is more precise. Soft-supersede is deliberately reversible:\n  re-asserting a fact revives it, and `query(..., as_of=<datetime>)` **time-travels**\n  to what was current at that moment (each fact carries a `created_at`/`invalid_at`\n  validity interval). Exposed to agents as the `memory_history` MCP tool and\n  `/history` endpoint.\n- **Health**: `/health` (liveness) and `/ready` (readiness) for orchestration probes.\n- **Postgres** creates an HNSW cosine index, so vector search is index-accelerated\n  rather than a sequential scan.\n- **Speed**: `tests/bench_speed.py` measures write throughput and read latency\n  (query / discover / trace, p50/p95) at a configurable graph size and backend\n  (`--fake` for model-free timing). Indicative real-model, in-memory numbers:\n  query ~14ms, discover ~7ms, causal trace ~3ms p50.\n\n## License\n\nMIT\n",
  "bytes": 49189,
  "sha": "27128491fb92ab47a09db0f61bfde0e29b939cf557db539a970e0f2057a39f21",
  "repo_slug": "bgokden/reasongraph",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_ai_primaxiom_memory_reasongraph_8a3f7023/readme"
}