Research
AEMA: Verifiable Evaluation Framework for Trustworthy and Controlled Agentic LLM Systems
AEMA: Verifiable Evaluation Framework for Trustworthy and Controlled Agentic LLM Systems Overview Research area: Evaluation of LLM-based multi-agent (agentic) systems; trustworthy AI; human-in-the-loo
- arXiv
- 2601.11903
- Published
- 2026-01-17
- Authors
- YenTing Lee, Keerthi Koneru, Zahra Moslemi, Sheethal Kumar, Ramesh Radhakrishnan
AI summary
AEMA: Verifiable Evaluation Framework for Trustworthy and Controlled Agentic LLM SystemsOverview
- Research area: Evaluation of LLM-based multi-agent (agentic) systems; trustworthy AI; human-in-the-loop oversight.
- Technical level: Advanced. The paper assumes familiarity with LLM-as-a-Judge evaluation, retrieval-augmented generation, multi-agent orchestration frameworks (AutoGen, LangChain, ChromaDB), and ranking metrics such as F1, Jaccard overlap, and Kendall-style inversion counts.
- Scope in one sentence: The paper proposes AEMA, a four-role multi-agent evaluation framework that plans, grounds, scores, and aggregates step-level and end-to-end assessments of enterprise-style agentic workflows, and compares it against a single LLM-as-a-Judge on finance invoice-validation tasks under human-as-a-judge references.
What This Paper Is About
Evaluating LLM-based multi-agent systems is hard because their reasoning and coordination unfold over many steps, while existing evaluation methods typically score only a single final response or rely on narrow benchmarks that lack stability, extensibility, and automation at enterprise scale. The authors build AEMA (Adaptive Evaluation Multi-Agent), a process-aware and auditable framework that adapts its evaluation plan to the business domain, retrieves relevant evaluation functions, generates few-shot exemplars, runs multiple evaluators, and produces a traceable final report under human oversight. The goal is to make evaluation function as a verifiable mechanism of trust and control rather than a mere score.
Key Contributions
- A process-aware, verifiable evaluation framework that unifies step-level and end-to-end assessment for multi-agent systems, producing auditable traces rather than single-response scores.
- An adaptive methodology supporting human-in-the-loop oversight and continuous refinement of evaluation criteria, including domain classification, hybrid (sparse + dense) retrieval of evaluation functions, and a Plan Generator / Plan Evaluator debate loop.
- A formal plan-evaluation metric combining five criteria — schema validity, agent selection accuracy, step-agent coherence, order preservation, and step efficiency — aggregated with the Analytic Hierarchy Process (AHP) into a scalar score in [0, 1].
- Empirical demonstration of trustworthy evaluation in an enterprise-style finance workflow, showing lower score dispersion and stronger human alignment than a single LLM-as-a-Judge under both good-quality and degraded inputs.
Main Findings
- Planning converges with bounded debate: Across 30 runs on identical finance workflow output, consensus on the correct plan was reached in 13 runs after one debate round, 13 runs after two rounds, and 4 runs after three rounds, supporting the claim that a single LLM generation is not consistently optimal and that a cap of three rounds is sufficient in this setup.
- Lower score dispersion than a single judge: Across 30 evaluations with identical inputs, AEMA showed narrow score variation at each step and in the final metric, with a smaller interquartile range and shorter whiskers in box-and-whisker plots, while the single LLM-as-a-Judge showed wider dispersion and several low outliers, especially for Decision and Final. The human-as-a-judge reference for this case is 0.96, near which AEMA's distribution concentrates.
- Stronger human alignment on good-quality invoices (20 runs): AEMA's mean absolute error averaged over the six steps was 0.018 versus 0.077 for the single LLM. AEMA matched the human score on Planning (0.98), Validation (1.00), and Decision (1.00), and was close on Final (0.97 vs. 0.96, absolute error 0.01). The single LLM diverged most on Decision (0.81, error 0.19) and Final (0.87, error 0.09).
- Greater resilience under degraded input (20 runs, blurred invoices): AEMA's average absolute error over steps was 0.037 versus 0.108 for the single LLM, and its Final error was 0.04 versus 0.07. The single LLM departed more on Decision (0.68, error 0.32) and Validation (0.88, error 0.12). On Parsing, however, the single LLM was slightly closer to the human score (0.63 vs. human 0.50, error 0.13) than AEMA (0.38, error 0.12) — the two errors are nearly tied while both deviate from the human reference of 0.50.
- Adaptive planning under evaluator scarcity: By intentionally omitting the Policy Agent's evaluation while keeping the others active, the authors tested whether AEMA could still generate a coherent plan reflecting only implementable checks; the framework is reported to handle this without failing the planning step.
- Continuous scoring is a weak point: The authors report that repeated evaluations of identical parsing steps occasionally produced inconsistent numerical scores despite coherent rationales, and recommend discrete or categorical scoring scales for better repeatability.
Methodology in Plain English
AEMA is a coordinated loop of four agent roles built on AutoGen with LangChain and ChromaDB, using GPT-4o as the underlying model.
- Planning Agent: Reads the human evaluator's prompt and the agent's execution trace, classifies the business context into a predefined domain (Finance, Healthcare, or Software), and selects which steps to evaluate. It excludes redundant intermediary discussion steps and focuses on key responses, tool calls, and actions. To choose evaluation functions, it uses hybrid retrieval — BM25 sparse search plus dense cosine similarity over function docstrings — ranked by a convex combination, returning the top-k candidates (k set by the human). A Plan Generator proposes the plan and a Plan Evaluator reviews it; they iterate until consensus or a maximum round limit.
- Prompt-Refinement Agent: Reads each evaluation function's signature and docstring together with the agent's inputs, outputs, and reasoning trace, then produces a schema-compliant JSON parameter bundle. It also retrieves past evaluation records for few-shot exemplars, and synthesizes exemplars from the business context when the database does not supply enough.
- Evaluation Agents: Apply multiple evaluators per step, mixing LLM-based judgments with deterministic code-based checks, each returning a normalized score between 0 and 1 plus qualitative feedback.
- Final Report Agent: Aggregates the results into an overall score (by averaging or weighting evaluation dimensions), a strengths/weaknesses summary, and actionable recommendations. It also tracks historical evaluation trajectories to detect performance trends and distribution shifts.
Experimental setup: The target is a finance workflow validating invoices through six components — InputAgent, Orchestrator, ParserAgent, Validator Agent, Policy Agent, and Approval Agent. The baseline is a single LLM-as-a-Judge given the same scoring criteria concatenated into one unified prompt to keep the comparison fair. Results are benchmarked against human-as-a-judge references on good-quality invoices and blurred (degraded) images.
Plan-scoring math in brief: The formal metric combines schema validity (fraction of required fields correct), agent selection accuracy (F1 between gold and predicted agent sets), step-agent coherence (Jaccard overlap between unique predicted step labels and predicted agents), order preservation (1 minus normalized pairwise inversions, computed against a consistent topological extension for DAGs), and step efficiency (penalizing longer-than-gold plans). AHP derives non-negative weights summing to one from pairwise comparisons with a consistency check.
Why This Matters
- Impact on research: AEMA shifts evaluation from single-response scoring toward process-level, auditable assessment of multi-step agent reasoning, and introduces a reproducible metric for scoring evaluation plans themselves. It also quantifies a specific weakness — continuous-value scoring variance — that other agentic evaluation work must address.
- Real-world applications:
- Financial operations: automated invoice validation and approval decisions where stable, threshold-calibrated scores reduce manual overrides.
- Regulated enterprise workflows: auditable evaluation logs that can be replayed or examined for accountability and policy compliance.
- Site reliability and IT automation: stepping through multi-agent incident response or compliance workflows where each action needs verification.
- Healthcare and software agents: the framework is described as supporting domain-specific evaluation functions across Finance, Healthcare, and Software, restricting its plan to the detected domain.
- Industry relevance: The work is positioned explicitly for enterprise multi-agent deployments, where predictable scores support fixed thresholds, reduce evaluator drift, and reduce human override burden. It also raises cost and latency as practical constraints, suggesting budget-aware planning and model-size switching as mitigations.
Future Directions
- Scoring scale reform: Moving from continuous scores to discrete or categorical scales to improve repeatability and interpretability, following the observed variance in continuous-value judgments on parsing steps.
- Cost and latency reduction: Evaluating only priority actions, skipping redundant re-evaluations within a time window, budget-aware planning that allocates small versus large models dynamically, and KV-cache reuse for repeated prefixes.
- Controlled prompt merging: Running experiments to identify safe levels of consolidating pipeline stages without degrading task accuracy or interpretability.
- Cross-domain generalization: Extending beyond the single Finance domain tested here to broader and safety-critical workflows, with heterogeneous agent stacks rather than LLM-based components throughout.
Target Audience
Enterprise AI engineers and platform teams deploying multi-agent LLM systems; AI evaluation and benchmark researchers interested in process-level, auditable assessment; trustworthy-AI and AI-governance practitioners who need traceable evaluation records for oversight; and technical decision-makers in regulated industries (finance, healthcare, IT operations) weighing whether agentic automation can be reliably assessed before adoption.
Authors’ abstract
Evaluating large language model (LLM)-based multi-agent systems remains a critical challenge, as these systems must exhibit reliable coordination, transparent decision-making, and verifiable performance across evolving tasks. Existing evaluation approaches often limit themselves to single-response scoring or narrow benchmarks, which lack stability, extensibility, and automation when deployed in enterprise settings at multi-agent scale. We present AEMA (Adaptive Evaluation Multi-Agent), a process-aware and auditable framework that plans, executes, and aggregates multi-step evaluations across heterogeneous agentic workflows under human oversight. Compared to a single LLM-as-a-Judge, AEMA achieves greater stability, human alignment, and traceable records that support accountable automation. Our results on enterprise-style agent workflows simulated using realistic business scenarios demonstrate that AEMA provides a transparent and reproducible pathway toward responsible evaluation of LLM-based multi-agent systems. Keywords Agentic AI, Multi-Agent Systems, Trustworthy AI, Verifiable Evaluation, Human Oversight