pith. sign in

arxiv: 2307.09702 · v4 · pith:5C6HK6GBnew · submitted 2023-07-19 · 💻 cs.CL · cs.LG

Efficient Guided Generation for Large Language Models

Pith reviewed 2026-05-13 15:02 UTC · model grok-4.3

classification 💻 cs.CL cs.LG
keywords guided text generationregular expressionscontext-free grammarsfinite-state machinesconstrained decodinglarge language modelsvocabulary indexing
0
0 comments X

The pith

Neural text generation can be reformulated as finite-state machine transitions to enable efficient guidance by regular expressions and context-free grammars.

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper reframes the process of generating text from language models as a sequence of state transitions in a finite-state machine. This reformulation makes it possible to build a precomputed index over the model's vocabulary that restricts token choices to those compatible with a given regular expression or context-free grammar. Because the index is constructed once and consulted during generation, the method remains model-agnostic, adds only negligible overhead per token, and guarantees that every produced sequence satisfies the supplied structural constraints. Existing guided-generation techniques are shown to be slower or less general under the same conditions.

Core claim

The problem of neural text generation can be constructively reformulated in terms of transitions between the states of a finite-state machine. This framework leads to an efficient approach to guiding text generation with regular expressions and context-free grammars by allowing the construction of an index over a language model's vocabulary. The approach is model agnostic, allows one to enforce domain-specific knowledge and constraints, and enables the construction of reliable interfaces by guaranteeing the structure of the generated text. It adds little overhead to the token sequence generation process and significantly outperforms existing solutions.

What carries the argument

An index over the language model's vocabulary that maps finite-state machine states to allowed next tokens, computed once from the grammar and reused at each generation step.

If this is right

  • Any language model can be used without modification because the guidance logic sits outside the model weights.
  • Domain rules expressed as regular expressions or context-free grammars are enforced at every step rather than repaired afterward.
  • Structured output interfaces become reliable because every completion is guaranteed to parse according to the supplied grammar.
  • The per-token cost remains close to ordinary sampling once the index exists.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The same indexing technique could be applied to other formal constraints such as JSON schemas or type systems if they can be compiled to finite automata.
  • Because the method decouples constraint checking from model inference, it may scale to very large models where fine-tuning for constraints is impractical.
  • Repeated use of the same grammar across many prompts amortizes the one-time index cost, favoring deployment in production systems that repeatedly generate constrained text.

Load-bearing premise

Building and storing the vocabulary index stays fast and low-memory even when the grammar is complex and the vocabulary is large.

What would settle it

A timing and correctness benchmark on a 100k-token vocabulary with a non-trivial context-free grammar where either the index construction exceeds a few seconds or the generated strings violate the grammar more than 1 percent of the time.

read the original abstract

In this article we show how the problem of neural text generation can be constructively reformulated in terms of transitions between the states of a finite-state machine. This framework leads to an efficient approach to guiding text generation with regular expressions and context-free grammars by allowing the construction of an index over a language model's vocabulary. The approach is model agnostic, allows one to enforce domain-specific knowledge and constraints, and enables the construction of reliable interfaces by guaranteeing the structure of the generated text. It adds little overhead to the token sequence generation process and significantly outperforms existing solutions. An implementation is provided in the open source Python library Outlines

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

0 major / 3 minor

Summary. The paper reformulates neural text generation as transitions between states of a finite-state machine. This enables an efficient, model-agnostic method for guiding large language models with regular expressions and context-free grammars by precomputing an index over the vocabulary that masks invalid tokens at each generation step. The approach adds negligible overhead, guarantees output structure, enforces domain constraints, and is shown to outperform prior solutions; an open-source implementation is provided in the Outlines library.

Significance. If the formal construction and empirical results hold, the work supplies a practical, low-overhead mechanism for constrained generation that is immediately useful for building reliable LLM interfaces in code generation, structured data extraction, and domain-specific applications. The manuscript supplies both the formal FSM-based derivation and concrete timings on vocabularies up to 128 k tokens together with moderately complex grammars, showing amortized index construction and sub-millisecond per-step cost; the open-source library further strengthens reproducibility and impact.

minor comments (3)
  1. [Abstract] §5 (empirical evaluation): the abstract asserts that the method 'significantly outperforms existing solutions,' yet the quantitative comparison (speed-up factors, success rates) appears only in the body; a one-sentence summary of the key metrics should be added to the abstract for immediate clarity.
  2. [§4.3] The description of the on-the-fly CFG approximation in §4.3 states that 'claimed guarantees are preserved,' but does not explicitly list the residual cases in which the approximation may accept a token that the exact parser would reject; a short enumerated list of these edge cases would remove ambiguity.
  3. [Figure 2] Figure 2 (timing plots) uses a log scale on the y-axis without stating the base; adding 'log10' to the axis label would prevent misreading of the sub-millisecond overhead values.

Simulated Author's Rebuttal

0 responses · 0 unresolved

We thank the referee for the positive assessment of our work and the recommendation for minor revision. The summary accurately captures the core contribution of reformulating neural text generation as FSM state transitions to enable efficient, model-agnostic constraint enforcement via precomputed vocabulary indices for regex and CFGs.

Circularity Check

0 steps flagged

No significant circularity; constructive reformulation of guided generation

full rationale

The paper reformulates neural text generation as FSM state transitions and constructs a vocabulary index to mask invalid tokens for regex and CFG constraints. This is a direct algorithmic construction with formal definitions, on-the-fly approximations for CFGs, and empirical timings on realistic vocabularies (up to 128k tokens). No equations or claims reduce to fitted parameters, self-definitions, or load-bearing self-citations; the central results are externally verifiable via the open-source implementation and do not rely on renaming known results or importing uniqueness from prior author work. The derivation is self-contained.

Axiom & Free-Parameter Ledger

0 free parameters · 1 axioms · 0 invented entities

The central claim rests on standard computer-science assumptions about finite-state machines and language acceptance; no free parameters, new invented entities, or ad-hoc axioms are introduced in the abstract.

axioms (1)
  • domain assumption Text generation can be modeled as transitions between states of a finite-state machine that tracks pattern satisfaction.
    Invoked in the opening reformulation of the generation problem.

pith-pipeline@v0.9.0 · 5390 in / 1195 out tokens · 42727 ms · 2026-05-13T15:02:45.989077+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Forward citations

Cited by 60 Pith papers

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score.

  1. Autoregressive Synthesis of Sparse and Semi-Structured Mixed-Type Data

    cs.LG 2026-03 conditional novelty 8.0

    ORiGAMi synthesizes sparse semi-structured mixed-type JSON data using path-encoded autoregressive tokenization and schema constraints, outperforming flattened tabular baselines on 17 of 18 fidelity, detection, and uti...

  2. The Alignment Problem in Constrained Code Generation

    cs.SE 2026-06 unverdicted novelty 7.0

    Incomplete constrainers in constrained decoding push LLMs into low-probability program regions, making unconstrained decoding outperform constrained decoding on functional correctness across seven models and three benchmarks.

  3. Apparent Psychological Profiles of Large Language Models are Largely a Measurement Artifact

    cs.AI 2026-06 unverdicted novelty 7.0

    Apparent psychological profiles of LLMs are largely measurement artifacts driven by directional response bias rather than actual traits.

  4. Verified Detection and Prevention of Concurrency Anomalies in Multi-Agent Large Language Model Systems

    cs.LG 2026-06 accept novelty 7.0

    Formalizes four concurrency anomalies in multi-agent LLM systems and mechanically verifies a hierarchy of sound detectors and preventions realized in Rust runtimes using TLA+ and Verus.

  5. SuperMemory-VQA: An Egocentric Visual Question-Answering Benchmark for Long-Horizon Memory

    cs.CV 2026-05 unverdicted novelty 7.0

    SuperMemory-VQA provides 4,853 human-verified QA pairs from 52.9 hours of egocentric AI glasses recordings to benchmark AI systems on realistic long-horizon memory tasks including an unanswerable option.

  6. Projectional Decoding: Towards Semantic-Aware LLM Generation

    cs.SE 2026-05 unverdicted novelty 7.0

    Projectional decoding maintains a partial graph model during LLM generation to enable incremental semantic validation with provable guarantees for SE tasks.

  7. A Policy-Driven Runtime Layer for Agentic LLM Serving

    cs.AI 2026-05 unverdicted novelty 7.0

    Introduces a three-tier architecture with an agent runtime layer and four primitives for agent-aware policies in LLM serving, validated on KV caching via CacheSage showing 13-37pp hit-rate gains on five workloads.

  8. Neural Autoregressive Control Variates for the Quantum Monte Carlo Sign Problem

    cond-mat.str-el 2026-05 unverdicted novelty 7.0

    Paired autoregressive transformers with disjoint sign-sector support generate zero-mean control variates that cut the standard error of the average sign by up to 10x and the energy estimator by 3-5x in small-N SSE sim...

  9. Ishigaki-IDS-Bench: A Benchmark for Generating Information Delivery Specification from BIM Information Requirements

    cs.CL 2026-05 unverdicted novelty 7.0

    Presents Ishigaki-IDS-Bench, the first benchmark for LLM-based IDS generation from BIM requirements, with baseline results showing max 65.6% Facet F1 and 33.1% content pass rate across 10 models.

  10. Robotics-Inspired Guardrails for Foundation Models in Socially Sensitive Domains

    cs.AI 2026-05 unverdicted novelty 7.0

    Introduces the Grounded Observer framework that applies robotics-inspired formal constructs for runtime constraint enforcement on foundation model interaction trajectories in socially sensitive domains.

  11. ProtoMedAgent: Multimodal Clinical Interpretability via Privacy-Aware Agentic Workflows

    cs.CV 2026-05 unverdicted novelty 7.0

    ProtoMedAgent uses a privacy-aware agentic workflow with neuro-symbolic bottlenecks to achieve 91.2% faithfulness in clinical report generation, significantly outperforming standard RAG methods on a large patient cohort.

  12. The Extrapolation Cliff in On-Policy Distillation of Near-Deterministic Structured Outputs

    cs.LG 2026-05 unverdicted novelty 7.0

    On-policy distillation has an extrapolation cliff at closed-form lambda*(p,b,c) set by teacher modal probability, warm-start mass, and clip strength, past which training shifts from format-preserving to format-collapsing.

  13. Future Validity is the Missing Statistic: From Impossibility to $\Phi$-Estimation for Grammar-Faithful Speculative Decoding

    cs.LG 2026-05 unverdicted novelty 7.0

    Speculative decoding under local grammar masking samples from the projected distribution μ^proj instead of the grammar-conditional μ*, and the future-validity function Φ corrects it via a Doob transform to achieve exa...

  14. The Structured Output Benchmark: A Multi-Source Benchmark for Evaluating Structured Output Quality in Large Language Models

    cs.CL 2026-04 accept novelty 7.0

    SOB benchmark shows LLMs achieve near-perfect schema compliance but value accuracy of only 83% on text, 67% on images, and 24% on audio.

  15. Query2Diagram: Answering Developer Queries with UML Diagrams

    cs.SE 2026-04 unverdicted novelty 7.0

    Fine-tuning Qwen2.5-Coder-14B on code-query-diagram triples produces UML diagrams with higher F1 scores and lower structural defect rates than base or other LLMs.

  16. Copy-as-Decode: Grammar-Constrained Parallel Prefill for LLM Editing

    cs.CL 2026-04 unverdicted novelty 7.0

    Copy-as-Decode recasts LLM editing as grammar-constrained decoding over copy and generate primitives, delivering closed-form upper-bound speedups of 13x pooled on editing benchmarks via parallel prefill without any training.

  17. Governed MCP: Kernel-Level Tool Governance for AI Agents via Logit-Based Safety Primitives

    cs.CR 2026-04 unverdicted novelty 7.0

    Governed MCP implements kernel-level governance for MCP tool calls in AI agents through a 6-layer pipeline including ProbeLogits semantic verification, with an ablation showing F1 drop from 0.773 to 0.327 without it a...

  18. Schema Key Wording as an Instruction Channel in Structured Generation under Constrained Decoding

    cs.CL 2026-04 unverdicted novelty 7.0

    Schema-key wording functions as an implicit instruction channel under constrained decoding, with experiments showing that rephrasing only the keys can substantially change accuracy on math benchmarks while prompt, mod...

  19. Learning and Enforcing Context-Sensitive Control for LLMs

    cs.CL 2026-04 unverdicted novelty 7.0

    A framework learns context-sensitive constraints automatically from LLM outputs to enforce perfect adherence during generation without manual specification.

  20. From Plausibility to Verifiability: Risk-Controlled Generative OCR with Vision-Language Models

    cs.CV 2026-03 unverdicted novelty 7.0

    A model-agnostic Geometric Risk Controller reduces extreme errors in VLM-based OCR by requiring cross-view consensus before accepting outputs.

  21. Constrained Decoding for Safe Robot Navigation Foundation Models

    cs.RO 2025-09 unverdicted novelty 7.0

    SafeDec uses constrained decoding to ensure autoregressive robot navigation foundation models generate actions that provably satisfy STL safety specifications under assumed dynamics.

  22. Making Logic a First-Class Citizen in Generative ML for Networking

    cs.NI 2025-06 unverdicted novelty 7.0

    NetNomos is a multi-stage framework that extracts, filters, and enforces first-order logic rules in generative ML models for networking tasks including telemetry imputation, traffic forecasting, and synthetic trace ge...

  23. ToxiREX: A Dataset on Toxic REasoning in ConteXt

    cs.CL 2026-06 unverdicted novelty 6.0

    ToxiREX is a new dataset of 128k Reddit comments in six languages with hierarchical annotations for implicit toxicity in conversational context based on an existing reasoning schema.

  24. Novelty-Aware Agentic Retrieval: Comparing Research Contributions Through Structured Multi-Step Reasoning

    cs.IR 2026-06 conditional novelty 6.0

    The Novelty-Aware Research Agent layers query analysis, ReAct retrieval, ranking, schema-guided extraction, three-pass comparison, and answer generation on RAG to produce structured comparison artifacts that standard ...

  25. Minimality of Random Moore Automata under Prefix-Dependent Congruences

    cs.FL 2026-06 unverdicted novelty 6.0

    Under independent uniform random transitions and labels with agreement probability strictly less than one and at least three admissible symbols each, the induced prefix-dependent congruence on random Moore automata is...

  26. NTILC: Neural Tool Invocation via Learned Compression

    cs.SE 2026-06 unverdicted novelty 6.0

    NTILC replaces in-context tool registry lookup with learned latent retrieval using a signature-aware composite loss, reducing context consumption by over 95% and latency by up to 74%.

  27. Learning the Error Patterns of Language Models

    cs.LG 2026-05 unverdicted novelty 6.0

    Prefix filters learned by the Palla algorithm capture LLM error patterns and enable constrained sampling that boosts TypeScript compile rates by over 60% for Qwen2.5-1.5B to match larger models.

  28. Evolving and Detecting Multi-Turn Deception using Geometric Signatures

    stat.ML 2026-05 unverdicted novelty 6.0

    Multi-objective genetic prompt optimization creates multi-turn deceptive datasets validated by humans, then detected with 0.89 recall using angular coverage, distance ratio, and linearity features in embeddings.

  29. CourseBlueprint: A Structured Pipeline for Adaptive Pedagogical Video Generation Grounded in Course Corpora

    cs.CY 2026-05 unverdicted novelty 6.0

    CourseBlueprint builds a typed pipeline over a 23-lecture biomedical imaging corpus to generate prerequisite-aware, learner-adaptive videos with auditable engagement contracts and slide grounding.

  30. Ishigaki-IDS-Bench: A Benchmark for Generating Information Delivery Specification from BIM Information Requirements

    cs.CL 2026-05 unverdicted novelty 6.0

    Ishigaki-IDS-Bench supplies 166 verified bilingual examples plus audits to measure LLMs on producing standard-compliant IDS XML from BIM requirements, with best models at 65.6% macro F1 but only 27.7% passing content audits.

  31. The Constraint Tax: Measuring Validity-Correctness Tradeoffs in Structured Outputs for Small Language Models

    cs.LG 2026-05 unverdicted novelty 6.0

    Enforcing hard schemas on sub-3B models raises schema validity to 100% but drops answer accuracy from 19.7% to 11.0% and executable accuracy from 91.5% to 48.0% on tool-call tasks.

  32. TruncProof: A Guardrail for LLM-based JSON Generation under Token-Length Constraints

    cs.CL 2026-05 unverdicted novelty 6.0

    TruncProof lets LLMs generate syntactically valid JSON within strict token limits by approximating completion token counts via LL(1) parser lookahead.

  33. A Cascaded Generative Approach for e-Commerce Recommendations

    cs.AI 2026-05 unverdicted novelty 6.0

    A cascaded generative merchandising framework with placement theme generation, constrained keyword generation, and teacher-student fine-tuning achieves a 2.7% lift in cart adds per page view over a strong baseline in ...

  34. NCO: A Versatile Plug-in for Handling Negative Constraints in Decoding

    cs.CL 2026-05 unverdicted novelty 6.0

    NCO enables efficient online pattern matching for negative hard and regex constraints in LLM decoding to prevent forbidden content without state explosion.

  35. Mage: Multi-Axis Evaluation of LLM-Generated Executable Game Scenes Beyond Compile-Pass Rate

    cs.LG 2026-05 conditional novelty 6.0

    Mage shows compile-pass rate is anti-correlated with functional correctness in LLM game scene generation; direct NL-to-C# yields 43% runtime but F1~0.12 structure, while IR conditioning recovers structure (F1 up to 1....

  36. When Correct Isn't Usable: Improving Structured Output Reliability in Small Language Models

    cs.CL 2026-05 conditional novelty 6.0

    AloLab, an iterative meta-agent prompt optimizer, raises structured output accuracy for 7-9B models from 0% to 84-87% on GSM8K while preserving near-native inference speed.

  37. Reliable Answers for Recurring Questions: Boosting Text-to-SQL Accuracy with Template Constrained Decoding

    cs.CL 2026-04 unverdicted novelty 6.0

    TeCoD improves Text-to-SQL execution accuracy by up to 36% over in-context learning and cuts latency 2.2x on matched queries by extracting templates from historical pairs and enforcing them with constrained decoding.

  38. SYMBOLIZER: Symbolic Model-free Task Planning with VLMs

    cs.RO 2026-04 unverdicted novelty 6.0

    SYMBOLIZER grounds symbolic states from images via VLMs using only lifted predicates and solves long-horizon tasks with goal-count and width-based heuristic search, outperforming direct VLM planning and matching VLM-h...

  39. When Agents Go Quiet: Output Generation Capacity and Format-Cost Separation for LLM Document Synthesis

    cs.AI 2026-04 unverdicted novelty 6.0

    LLM agents avoid output stalling and reduce generation tokens by 48-72% via deferred template rendering guided by Output Generation Capacity and a Format-Cost Separation Theorem.

  40. Local-Splitter: A Measurement Study of Seven Tactics for Reducing Cloud LLM Token Usage on Coding-Agent Workloads

    cs.DC 2026-04 unverdicted novelty 6.0

    Combining local routing with prompt compression saves 45-79% cloud tokens on edit and explanation workloads, while a fuller set including draft-review saves 51% on RAG-heavy tasks.

  41. ProbeLogits: Kernel-Level LLM Inference Primitives for AI-Native Operating Systems

    cs.OS 2026-04 unverdicted novelty 6.0

    ProbeLogits performs single-pass logit reading inside the kernel to classify LLM agent actions as safe or dangerous, reaching 97-99% block rates on HarmBench and F1 parity or better than Llama Guard 3 at 2.5x lower latency.

  42. Verbalized Algorithms: Classical Algorithms are All You Need (Mostly)

    cs.CL 2025-09 unverdicted novelty 6.0

    Verbalized algorithms integrate LLMs as oracles for simple string operations within classical algorithms to improve accuracy-runtime tradeoffs on sorting, clustering, submodular maximization, and multi-hop QA.

  43. RefineStat: Efficient Exploration for Probabilistic Program Synthesis

    cs.LG 2025-09 unverdicted novelty 6.0

    RefineStat improves small language model performance on probabilistic program synthesis by adding semantic constraint enforcement and diagnostic-aware refinement, producing syntactically and statistically reliable cod...

  44. "Don't Say It!": Constraints, Compliance, and Communication when Language Models Play Taboo

    cs.CL 2026-07 unverdicted novelty 5.0

    LLMs exhibit different trade-offs between rule compliance and communicative success across prompting, generation constraints, and representation interventions, but remain substantially weaker than humans at guessing u...

  45. AI Native Games: A Survey and Roadmap

    cs.AI 2026-07 unverdicted novelty 5.0

    The paper proposes a counterfactual definition of AI-native games, screens 53 examples, introduces a G/N taxonomy, and outlines a research roadmap for the field.

  46. Source-Grounded Data Generation for Text-to-JSON Learning

    cs.CL 2026-06 unverdicted novelty 5.0

    STAGE generates source-grounded text-to-JSON training data via spreadsheet validation, raising Qwen3-4B exact match from 31.37% to 74.27% on the 851-example STAGE-Eval benchmark.

  47. Beyond Perplexity: UTF-8 Validity in Byte-aware Language Models

    cs.CL 2026-06 unverdicted novelty 5.0

    A 355M-parameter byte-level LM on 80B multilingual tokens exhibits UTF-8 validity converging after 4.2B tokens versus 2.1B for perplexity, with higher validity on rare characters than common ones.

  48. Empirical Study for Structured Output Control in LLMs for Software Engineering

    cs.SE 2026-06 conditional novelty 5.0

    Empirical benchmarks on four SE tasks show grammar-constrained decoding and TTMG eliminate most syntax errors in LLM outputs while structural and semantic errors persist and cascade in downstream tools.

  49. Operationalizing Linguistic Methods through Prompt-Engineering Skills: An Automatic Chinese Web Neologism Detection Pipeline

    cs.CL 2026-06 unverdicted novelty 5.0

    A four-stage prompt-engineering pipeline detects Chinese web neologisms from a 267M-document corpus, producing 4,853 labeled neologisms, with per-stage conditional recall decomposition identifying bottlenecks at candi...

  50. Ishigaki-IDS: An Open-Weight Verifier-Aware Model for Information Delivery Specification Drafting in Building Information Modeling

    cs.CL 2026-06 unverdicted novelty 5.0

    Ishigaki-IDS is a verifier-aware LLM for generating validator-passing IDS files in BIM, reaching IDSAuditPass scores of 0.651-0.753 on a 166-case benchmark and cutting practitioner work time by 54.7%.

  51. Political Persuasion and Endorsement in Large Language Models

    cs.CY 2026-06 unverdicted novelty 5.0

    LLMs show low endorsement of persuasion-infused messages unless given partisan personas, which then increase polarized endorsements varying by technique and topic.

  52. Accelerating Constrained Decoding with Token Space Compression

    cs.AI 2026-05 unverdicted novelty 5.0

    CFGzip is an offline token space compression method that reduces CFG engine overhead in LLM constrained decoding, with reported latency cuts of up to two orders of magnitude and 7.5x overall speedup.

  53. Neuro-Symbolic Verification of LLM Outputs for Data-Sensitive Domains (extended preprint)

    cs.AI 2026-05 unverdicted novelty 5.0

    Neuro-symbolic pipeline using formal logic and semantic embeddings detects hallucinations in LLM medical reports at 83%+ for entities and 72% for fabrications while cutting creation time 30%.

  54. CasualSynth: Generating Structurally Sound Synthetic Data

    cs.LG 2026-05 unverdicted novelty 5.0

    CausalSynth combines structural causal models with LLMs and iterative verification to produce synthetic data that respects given causal structures while remaining linguistically natural.

  55. ProtoMedAgent: Multimodal Clinical Interpretability via Privacy-Aware Agentic Workflows

    cs.CV 2026-05 unverdicted novelty 5.0

    ProtoMedAgent formalizes multimodal clinical reporting as iterative zero-gradient test-time optimization over a neuro-symbolic bottleneck with k-anonymity and ℓ-diversity privacy gate, reporting 91.2% faithfulness ver...

  56. TruncProof: A Guardrail for LLM-based JSON Generation under Token-Length Constraints

    cs.CL 2026-05 unverdicted novelty 5.0

    TruncProof is a grammar-constrained decoding method that enforces token-length limits on LLM-generated JSON by using LL(1) parser lookahead to estimate remaining tokens needed for syntactic validity.

  57. From Accuracy to Auditability: A Survey of Determinism in Financial AI Systems

    cs.AI 2026-05 unverdicted novelty 5.0

    Financial AI systems using tabular models, graph networks, and LLM agents exhibit nondeterminism that undermines reproducibility, quantified via experiments on public datasets and addressed by a proposed layered evalu...

  58. Proactive Dialogue Model with Intent Prediction

    cs.CL 2026-04 unverdicted novelty 5.0

    A Temporal Bayesian Network derived from MultiWOZ intent annotations predicts user intent transitions and guides proactive dialogue generation, raising Coverage AUC from 0.742 to 0.856 while cutting turns to 75% cover...

  59. Conformal Geometric Algebra as a Symbolic Interface for LLM-Driven 3D Scene Editing

    cs.GR 2026-04 conditional novelty 5.0

    Conformal Geometric Algebra as a symbolic interface for LLM 3D scene editing yields higher compositional fidelity on ordered instruction chains and lower token costs than Euclidean 4x4 matrices while matching other co...

  60. LLM StructCore: Schema-Guided Reasoning Condensation and Deterministic Compilation

    cs.CL 2026-04 unverdicted novelty 5.0

    Two-stage Schema-Guided Reasoning with LLM condensation and deterministic compilation achieves macro-F1 of 0.63 on dyspnea CRF filling task and is language-agnostic.