The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Confine the model, not the math: structural abstention prevents LLMs from inventing numbers by letting generative models shape and confirm questions but delegating all value computation to a deterministic kernel; a two-year enterprise deployment shows the approach is practicable though it narrows coverage.

Never the Number: Structural Abstention for AI Systems Whose Answers Are Consumed as Fact
Zhelun, Wu · August 14, 2026
arxiv descriptive low evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Zhelun unresolved corpus identity
  2. Wu unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Zhelun Wu provider ID
The paper introduces 'structural abstention'—an architecture that confines generative components to an interpretive shell and uses a deterministic kernel for all value computation—so that unanswerable requests are refused rather than answered incorrectly, trading coverage for auditable reliability in fact-consumed systems.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Large language models have made natural language interfaces to databases (NLIDB) newly credible, but LLM text-to-SQL systems fail in a way that matters for deployment: a hallucinated column or a mis-aggregated total yields a fluent wrong answer, indistinguishable at the point of use from a right one. Where the consumer cannot inspect the generated query, as in enterprise AI deployments and operational dashboards, and increasingly where the consumer is a tool-using agent rather than a person, accuracy alone is insufficient: nothing marks which answers to distrust. This is a reliability problem before it is an accuracy problem. We propose an architectural pattern for such systems, a trusted kernel with a generative shell, resting on one invariant: a component that can fabricate may influence which question the system answers, never which value it returns. A generative shell interprets underspecified input and phrases replies; a deterministic kernel matches fully specified questions against a bounded set of answerable question shapes and compiles them to queries by deterministic execution. The two meet at a confirmation the user reads before any value is computed, and requests the kernel cannot express are declined rather than approximated. We call this structural abstention, and distinguish it from the statistical abstention of selective prediction and calibrated confidence: refusal here needs no confidence estimate, because unanswerable requests are unrepresentable. We specify the pattern implementation-independently, give a five-decision recipe and work it across three domains, extend the invariant from returned values to the actions of agentic systems, and report a two-year production case study alongside two generative alternatives, a fine-tuned parser and a tool-retrieval agent. We close against enterprise and reliability benchmarks published since.

Summary

Main Finding

Large language models (LLMs) driving natural-language-to-database interfaces are unreliable when their generated queries are invisible to the consumer: fluent but fabricated or mis-aggregated numbers arrive as undetectable facts. The paper proposes an architectural pattern—structural abstention—centred on a perimeter invariant: any component that can fabricate may influence which question the system answers (phrasing, clarification) but must never influence the value returned (the number or executed action). Concretely, a generative "shell" handles interpretation and interaction up to an explicit confirmation of a fully specified question; a deterministic, non-generative "kernel" (grounder + compiler + executor) takes only that confirmed question and computes the value. Unanswerable or out-of-scope requests are declined before any value is produced, making refusal a first-class, observable outcome rather than a probabilistic after-the-fact abstention.

Key Points

  • The perimeter invariant: generative components may shape/phrase questions but must never produce values that flow to consumers as facts. Everything that could fabricate is kept outside the correctness-critical path.

  • Shell vs Kernel:

    • Shell (may be generative): INTERPRETER (extract determinate content), ELICITOR (ask clarifying questions, phrase confirmations and results).
    • Kernel (must be non-generative/deterministic): GROUNDER (decidable test: either returns a grounded question or reports failure), COMPILER (pure function mapping grounded question → query), EXECUTOR (runs query against data store).
  • Structural abstention vs statistical abstention:

    • Structural abstention: refuse at grounding time by making unanswerable requests unrepresentable—no confidence estimate required.
    • Statistical abstention: generate candidate answer then use model-based uncertainty to decide to abstain; requires calibration and is still vulnerable to undetected fabricated values.
  • Dialogue policy (forced by GROUNDER totality): three exhaustive branches

  • If state inconsistent → prompt user to resolve conflict.
  • If GROUNDER grounds → show confirmation; on user assent, deterministically compute and render result.
  • Else if incomplete → elicit missing pieces; otherwise, disclose nearest answerable questions (make capability boundary explicit).

  • Guarantees from the pattern:

  • No fabricated returned values; all numeric/factual outputs come from deterministic execution.
  • Auditability without logging: confirmed question uniquely determines the query (COMPILER is a function).
  • Failures are visible refusals (coverage errors), not silent incorrect answers.

  • Trade-off: reduced coverage and flexibility—the system declines some user requests it could have approximated—trading breadth for auditable reliability. The paper identifies conditions where that trade-off is worthwhile (noted qualitatively).

  • Extension to agents: invariant generalized from "never the number" to "never the executed action": generative parts may propose actions but must not control what action actually executes.

  • Empirical / practical context:

    • Production two-year case study (enterprise analytics) implemented this pattern; specifics are redacted but used to compare against two generative alternatives (fine-tuned parser and a tool-retrieval / RAG agent). RAG/tool-agent prototype improved coverage but incurred latency and nondeterminism; deterministic kernel gave auditable reliability necessary for fact-consumed settings.
    • Recent benchmarks (Spider 2.0, BEAVER) show sharp drops in off-the-shelf model performance on enterprise-style schemas—motivating constrained, auditable approaches.

Data & Methods

  • Nature of work: architecture and design paper with an industry production case study; no public datasets, code, or private schema details are disclosed. Examples and a synthetic schema are used for illustration.

  • Methodological components:

    • Pattern specified implementation-independently, then reduced to a five-decision recipe (pattern → instantiation choices) and applied across multiple domains (enterprise analytics, clinical ward reporting, financial reporting).
    • Roles and obligations formalized (INTERPRETER, ELICITOR, GROUNDER, COMPILER) with explicit constraints: GROUNDER must be total (return question or explicit failure); COMPILER must be a deterministic function.
    • Dialogue-state representation that encodes partial specification explicitly and supports three operations: completeness test, gap enumeration, consistency test.
    • Deterministic compilation/execution path (kernel) replaces any generative generation of query or value.
    • Comparison experiments in production against two generative alternatives:
      • Fine-tuned parser (end-to-end text-to-SQL).
      • Retrieval-augmented-generation (tool-retrieval agent) that calls helpers and composes queries (improved legibility but added nondeterminism/latency).
    • Component engineering choices mentioned: attention-based entity relevance, DSSM-style dual encoder for question recommendation, inference acceleration, compact translation models, neural NER—used within the shell or ancillary tooling but not inside the kernel.
  • Limitations of methods: no quantitative public metrics provided; evaluation is qualitative and based on production experience plus examination of external benchmarks that measure the specific failure modes the pattern targets.

Implications for AI Economics

  • Reliability vs Coverage trade-offs change product-market fit:

    • For contexts where consumers cannot inspect queries (enterprise dashboards, automated agents acting on values, clinical/financial decisions), the economic cost of a single undetected erroneous value can far exceed gains from broader coverage. Structural abstention is economically justified when downstream error costs are high and audits are infeasible.
    • Products that prioritize auditable, deterministic outputs will be preferable for high-stakes applications, even if they answer fewer queries automatically.
  • Adoption and labor implications:

    • The pattern institutionalizes a hybrid human–AI workflow: automated handling of auditable queries + explicit refusals that route to human analysts. That preserves human oversight where needed and may reshape labor demand toward more complex analytical tasks rather than routine query writing.
    • Firms may adopt such constrained systems to reduce legal/operational risk, affecting procurement and investment decisions (preference for certified determinism over best-effort LLM outputs).
  • Pricing, contracts, and liability:

    • Systems using structural abstention create clearer contractual guarantees (e.g., auditable computation path, explicit refusal behavior), enabling different pricing tiers and liability allocations compared to black-box LLM services.
    • Insurers and regulators may favor/require deterministic kernels for mission-critical fact delivery, influencing market standards and certification regimes.
  • Innovation direction and R&D allocation:

    • Benchmarks should shift to measure not only average execution accuracy but the reliability of refusal and auditable determinism (coverage vs safe-decline trade-offs). Investment may move from pushing raw average accuracy to improving deterministic grounding, schema abstraction layers, and coverage expansion techniques that retain kernel determinism (e.g., deterministic resolvers, verified tool-chains).
    • Agentic AI research must prioritize invariants that separate proposal (generative) from execution (deterministic) to maintain safety in automated action settings.
  • Competitive strategy and product design:

    • Companies targeting enterprise analytics should evaluate whether to invest in constrained semantic layers and deterministic compilers (higher upfront engineering cost, lower downstream risk) versus offering broader LLM-based coverage (faster feature development but higher exposure to silent errors).
    • Structural abstention can be a differentiator in regulated industries (healthcare, finance), enabling premium positioning for trustworthy automation.
  • Macroeconomic effects:

    • By enabling safer automation in settings where numbers drive automated decisions, structural abstention can accelerate deployment of AI-driven operational improvements while limiting costly error-induced disruptions—raising productive adoption in sectors previously cautious about LLMs.

In short: the paper reframes reliability as an architectural constraint (keep the fabricator out of the value path) and shows how making refusal explicit and deterministic yields auditable, safer interfaces for fact-consumed AI applications. The economic implications favour constrained, certifiable designs when the cost of silent errors is high and suggest new product, regulatory, and benchmarking directions.

Assessment

Paper Typedescriptive Evidence Strengthlow — The paper is primarily architectural and conceptual with a qualitative two-year production case study but provides no quantitative performance, evaluation metrics, or public data; claims are plausible and supported by prior literature but not empirically validated at scale in the text supplied. Methods Rigormedium — The design is specified carefully (invariant, component roles, decision recipe) and linked to prior work; implementations and alternatives are described, but the empirical side lacks measurable evaluation, withheld artifacts, and reproducible datasets, limiting methodological rigor for empirical claims. SampleA production enterprise analytics system the author led (Apple, 2021–2024) serving fact-consumed use cases; includes a two-year production deployment plus two generative alternative prototypes and worked examples in enterprise, clinical ward reporting, and financial reporting. The author explicitly withholds source code, schemas, datasets, and quantitative performance/adoption metrics; example schemas are synthetic. Themeshuman_ai_collab governance GeneralizabilityCase study from a single (enterprise) production setting with proprietary data and undisclosed metrics limits external validation., Pattern presumes availability of a deterministic kernel and bounded, authorable question shapes—may not fit open-ended exploratory analytics., Trade-off of coverage for reliability reduces applicability where broad linguistic coverage or discovery is required., Implementation and latency constraints (and reliance on enterprise warehouse properties) may differ in small businesses or public data contexts., Absence of quantitative evaluation prevents assessing effectiveness across languages, schema complexity, or different LLM families.

Claims (11)

ClaimDirectionOutcomeConfidence & EvidenceDetails
A component that can fabricate may influence which question the system answers, but it may never influence which value the system returns. Ai Safety And Ethics positive Whether generative components can affect returned factual values
Reading fidelity high
Study strength low
not reported
0.09
The proposed system separates a generative shell from a deterministic kernel: the shell interprets and phrases language, while the kernel grounds fully specified questions and deterministically compiles and executes queries. Ai Safety And Ethics positive Architectural separation of generative language processing from value computation
Reading fidelity high
Study strength medium
not reported
0.18
Requests that the kernel cannot express are declined rather than approximated. Ai Safety And Ethics positive Visibility and handling of unsupported or unanswerable requests
Reading fidelity high
Study strength medium
not reported
0.18
Structural abstention makes unanswerable requests unrepresentable and therefore does not require a calibrated confidence estimate. Ai Safety And Ethics positive Need for confidence estimation before abstention
Reading fidelity high
Study strength low
not reported
0.09
Within the bounded question pool, the mapping from a confirmed question to SQL is fixed and auditable. Regulatory Compliance positive Query reproducibility and auditability
Reading fidelity high
Study strength medium
not reported
0.18
The pattern guarantees that no returned figure is produced by a generative component; computation is delegated to the query engine. Error Rate positive Generative fabrication of returned numerical values
Reading fidelity high
Study strength medium
not reported
0.18
The pattern makes failures visible by converting unsupported requests into explicit refusal or disclosure of the nearest answerable questions. Ai Safety And Ethics positive Visibility of system failure and unsupported requests
Reading fidelity high
Study strength medium
not reported
0.18
On the Spider 2.0 benchmark, a code-agent framework using a frontier reasoning model solved 21.3% of tasks, compared with 91.2% on the original Spider benchmark. Output Quality negative Benchmark task-solving or execution accuracy
Reading fidelity high
Study strength medium
21.3% solved on Spider 2.0 versus 91.2% on original Spider
0.18
On the BEAVER benchmark, off-the-shelf models scored approximately zero end-to-end; providing gold tables and column mappings improved the best model only into the low single digits. Output Quality negative End-to-end text-to-SQL task-solving accuracy
Reading fidelity high
Study strength medium
approximately zero end-to-end; low single digits with gold-table and gold-column hints
0.18
For tool-using agents, the perimeter invariant can be extended so that a component capable of fabrication may influence which action is proposed but never which action is executed. Ai Safety And Ethics positive Control of executed agentic actions by generative components
Reading fidelity high
Study strength low
not reported
0.09
The author reports that the proposed architecture was used in a two-year production case study conducted between 2021 and 2024. Organizational Efficiency positive Production deployment of the architecture
Reading fidelity high
Study strength low
two-year production case study
0.09

Notes