โ† Back to Paper List

Agentics 2.0: Logical Transduction Algebra for Agentic Data Workflows

Alfio Massimiliano Gliozzo, Junkyu Lee, Nahuel Defosse
Not explicitly reported in the paper
arXiv (2026)
Agent Reasoning Benchmark

๐Ÿ“ Paper Summary

Structured Agentic Workflows Neuro-symbolic Programming
Agentics 2.0 defines LLM inference as a typed, stateless algebraic function (transduction) that enforces schema validity and evidence locality, enabling reliable, scalable, and observable parallel agent workflows.
Core Problem
Current agentic workflows rely on fragile prompt chaining, state-graph orchestration, or conversational patterns, which lack the reliability, observability, and scalability needed for enterprise workloads.
Why it matters:
  • Enterprise deployments require strict software quality attributes (reliability, scalability, observability) that plausible text generation alone cannot provide
  • Conversational agent paradigms are unreliable, relying on black-box planners and unverifiable control flows rather than deterministic contracts
  • Existing frameworks struggle to manage the accumulation of semantic errors across multi-step pipelines even if they pass syntactic tests
Concrete Example: In a credit risk assessment, a standard agent might hallucinate a credit decision based on irrelevant data. Without 'provenance,' the system cannot explain *which* specific input slots (e.g., salary vs. name) caused the output, leading to silent corruption or unverifiable decisions.
Key Novelty
Logical Transduction Algebra
  • Formalizes LLM inference not as a conversation, but as a 'transducible function' that strictly maps typed input frames to typed output frames with mandated evidence pointers
  • Introduces algebraic operators (Merge &, Composition @, Transduction <<) that treat LLM calls as composable, stateless functions amenable to Map-Reduce parallelization
Evaluation Highlights
  • State-of-the-art performance on DiscoveryBench (data-driven discovery task) and Archer (NL-to-SQL semantic parsing)
  • Demonstrates scalability through stateless parallel execution of transductions using Map-Reduce patterns
  • Enforces semantic observability by tracing evidence between input and output slots, preventing hallucinated slot filling
Breakthrough Assessment
8/10
Strong shift from chat-based agent architectures to strict functional programming paradigms. The formalization of 'transducible functions' with provenance requirements addresses critical enterprise reliability gaps.
×