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 →

A new resource-aware benchmark exposes a production gap: domain-specialized agents achieve high success while meeting strict latency, cost and memory budgets, whereas popular general-purpose agent methods frequently fail or run over budget.

AgentSLABench: Evaluating and Benchmarking Agentic Systems Under Resource Constraints
Meher Bhaskar Madiraju, Meher Sai Preetam Madiraju · August 01, 2026
arxiv descriptive medium 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. Meher Bhaskar Madiraju unresolved corpus identity
  2. Meher Sai Preetam Madiraju unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Meher Bhaskar Madiraju provider ID
  2. Meher Sai Preetam Madiraju provider ID
AGENTSLABENCH is a resource-aware benchmarking framework that profiles autonomous agents across correctness and resource dimensions, showing that task-specialized agents can meet production budgets and succeed on domain tasks while general-purpose baselines often fail or exceed constraints.

Citation observations

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

We present AgentSLABench, a resource-aware evaluation framework for autonomous AI agents that measures correctness alongside latency, cost, compute, memory, and network usage under declared resource budgets. Unlike standard benchmarks that report only accuracy, AgentSLABench produces a multi-dimensional profile per agent per task - the same way systems profilers (perf, pprof, cProfile) measure resource consumption of code, but extended with task correctness as a first-class dimension. AgentSLABench provides 16 task environments across 6 categories (5 core: multi-hop QA, retail substitution, code generation, web shopping, travel planning; 11 extended) with isolated Docker containers, declared CPU/memory/time/network budgets, sealed test sets with SHA256 hashes, and a standardized profiling protocol. We profile 5 general-purpose baseline agents (ReAct, PlanAndSolve, Reflexion, CoT, Random) plus 4 task-specialized agents, finding that specialized agents achieve 100% success on 3/5 core tasks (fact_qa, web_shopping, travel_planning) and 66.7-83.3% on retail and code_gen, while general baselines fail entirely on 4/5 domain tasks. Crucially, we report the Efficiency-Adjusted Success Rate (EASR) - success weighted by resource consumption relative to declared budgets - revealing that high accuracy at unbounded cost is not production-viable. We release the full infrastructure, sealed test sets, and profiling results to enable reproducible, resource-aware agent evaluation.

Summary

Main Finding

AGENTSLABENCH is a resource-aware, reproducible benchmarking framework that evaluates autonomous LLM agents not just on task correctness but jointly on latency, cost, compute, memory, and network use under declared resource budgets. Using Docker-enforced budgets and a standardized profiling protocol, the authors show that task-specialized agents substantially outperform general-purpose baselines on production-relevant, resource-constrained criteria: specialized agents hit high success rates while meeting budgets; general baselines often fail entirely on domain tasks. They introduce the Efficiency-Adjusted Success Rate (EASR) — success weighted by adherence to declared budgets — to distinguish “success at any cost” from production-viable success.

Key Points

  • Resource-first evaluation: Each task declares CPU, memory, wall-time, and network budgets enforced by Docker; over-budget episodes are terminated and recorded as failures.
  • Multi-dimensional profile per episode: correctness (success, exact_match, f1), latency (wall-time, p50/p95), cost (USD, tokens), compute (peak RSS, CPU time), network (HTTP calls, bytes), safety violations. Output: per-episode JSONL.
  • EASR metric: EASR = success × min(1, budget_lat / actual_lat) × min(1, budget_cost / actual_cost) × min(1, budget_mem / actual_mem). Rewards success only when within declared budgets.
  • Tasks and scale: v1.0 contains 16 tasks across 6 categories (5 core tasks: multi-hop QA, retail substitution, code generation, web shopping, travel planning), ~3,500 test samples, sealed test sets (SHA256), multi-seed runs.
  • Agents evaluated: 5 general baselines (ReAct, PlanAndSolve, Reflexion, Chain-of-Thought, Random) and 4 task-specialized agents (RetailAgent, WebShoppingAgent, TravelPlanAgent, CodeGenAgent).
  • Main empirical results:
    • Specialized agents achieve 100% success on 3/5 core tasks (fact_qa, web_shopping, travel_planning reported as 100% for web_shop/fact_qa; travel and some others 83.3–66.7%), and meet budgets.
    • General baselines have 0% success on 4/5 domain tasks (they may do well only on fact_qa).
    • Example contrast (paper): RetailAgent — 83.3% success at median 142 ms, $0.002, 180 MB; a ReAct+GPT‑4 solution might show 78% accuracy but median 3.2 s, $0.12, 1.2 GB (violating production SLAs).
  • Failure modes: hallucinated tool calls, timeouts on complex multi-step tasks, constraint conflicts for planning tasks; detailed failure-mode distributions are provided.
  • Reproducibility & infrastructure: Docker-isolated tasks, REST task interface (/reset, /step), sealed test sets, per-episode JSONL outputs, and released artifacts.

Data & Methods

  • Task catalog: 16 distinct environments, 3,500 test samples total, core tasks include:
    • fact_qa_01 (multi-hop QA), retail_01 (product substitution), code_gen_01 (API-based code generation), web_shop_01 (find & purchase), travel_plan_01 (multi-constraint planning).
  • Declared budgets: per-task CPU cores, memory, wall-time, network policy (allowed/disabled). Budgets enforced via Docker flags (-cpus, -memory, network policy, timeout).
  • Profiling protocol (per episode): start container with limits → /reset → agent interacts via /step until done/timeout → measure container stats and API logs → judge correctness with LLM judge → compute EASR → write JSONL profile.
  • Measured metrics: wall_time_ms, step latencies (p50/p95/p99), api_cost_usd, token counts, peak_rss_mb, cpu_time_s, http_calls, net_bytes, safety violations, trajectory, and various task-specific scores (e.g., price_optimality).
  • Agents: 5 general-purpose prompting/architectural baselines (ReAct, PlanAndSolve, Reflexion, CoT, Random) and 4 domain-specialized agents implementing heuristics, caching, schema-aware tooling, and template logic.
  • Experimental setup: 3 seeds per agent-task (default seeds 42, 123, 456), bootstrap 95% CIs reported (authors note wide CIs due to N=3 and recommend N≥10).
  • Output & reproducibility: sealed test set hashes, Docker images, JSONL profiles, and instrumentation released for replication.

Implications for AI Economics

  • Production viability and procurement decisions: EASR (or similar resource-aware metrics) should be incorporated into procurement, vendor selection, and SLA contracts. Buyers who select models solely on accuracy risk high operational costs (API charges, CPU/GPU time) and SLA violations; EASR provides a single interpretable signal for “deployable” performance.
  • Pricing and monetization: Cost-per-query matters materially. The paper shows that a narrow, well‑engineered specialized agent can deliver similar or better task outcomes at a fraction of per-request monetary and latency cost compared to large LLM-based, unconstrained solutions. This supports business cases for investing in specialized agents or hybrid architectures (small local models + targeted tool calls) rather than paying for larger models per call.
  • Investment and engineering trade-offs: The economic value of specialization (engineering effort to embed domain logic, caching, and schema-aware tool use) is quantifiable: it lowers operational expenditures (OPEX), improves latency (P99 SLA compliance), and reduces required infrastructure (smaller memory/CPU footprints). Firms must weigh upfront engineering (capex) versus ongoing API/model costs (opex).
  • Market structure & product design: AGENTSLABENCH suggests a two-tier market: (1) commodity upstream LLM APIs used for general reasoning and rare tasks, and (2) productized, specialized agents optimized for unit economics and SLAs. Specialized agents can capture higher margins or enable products that large-model-only solutions cannot (due to latency/cost constraints).
  • Resource allocation and capacity planning: Per-episode profiles enable forecasting of cluster costs and capacity needs, informing pricing models, throttling policies, and dynamic bidding for cloud resources. EASR-driven selection can minimize unit costs and aggregate compute/energy demand.
  • Externalities and regulation: Resource-aware evaluation foregrounds compute and energy usage per task, aligning with environmental accounting (Green AI) and potential regulatory/contractual disclosure of per-transaction resource use or carbon footprint. Buyers and regulators may prefer agents that trade some accuracy for lower resource externalities.
  • Platform & market signals: Benchmarks that publish multi-dimensional profiles (success × resource use) will shift market incentives away from “accuracy-only” leaderboards toward Pareto-efficient solutions. This can change price competition (e.g., cheaper, faster specialized agents winning real-world use cases) and encourage vendors to offer tiered products (low-latency low-cost vs. high-cost high-accuracy).
  • Operational risk & contract design: Using EASR as a gating metric in CI/CD can reduce deployment risk and SLA penalties; contracts could include EASR guarantees and penalties for over-budget behavior (much like throughput/latency SLAs in existing cloud contracts).
  • Limitations relevant to economics: Current budgets in AGENTSLABENCH are heuristic and CPU-only; real-world procurement should calibrate budgets to production PnS targets (P95/P99). Small-N seed uncertainty implies early-stage measurement error — economic decisions should account for statistical uncertainty and consider larger sample profiling.

Overall, AGENTSLABENCH provides an operationally and economically meaningful framework for choosing and optimizing agents under real-world constraints. For AI economics, the key takeaway is that accuracy alone is insufficient as a valuation metric — resource-aware success (EASR) better captures deployable value, cost-effectiveness, and the true economic trade-offs of agent design.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper provides reproducible, instrumented empirical profiling across 16 tasks and multiple agents with sealed test sets and Docker-enforced budgets, supporting its benchmarking claims; however, statistical power is limited (default N=3 seeds), budgets are heuristic, and results reflect a small set of engineered specialized agents and specific task designs rather than broad external validation. Methods Rigormedium — Strong engineering rigor: Docker isolation, declared budgets, per-episode JSONL profiles, sealed test splits, automated and some human-checked judging, and multi-metric measurement; weaknesses include small number of seeds (N=3), heuristic budget choices, CPU-only enforcement (no GPU budgets), limited human validation, and limited statistical testing. SampleAGENTSLABENCH v1.0: 16 task environments across 6 categories (5 core tasks: fact_qa (200), retail_substitution (500), code_gen (200), web_shopping (200), travel_planning (200)), totaling ~3,500 test samples; agents profiled include 5 general-purpose baselines (ReAct, PlanAndSolve, Reflexion, CoT, Random) and 4 task-specialized agents; evaluations run in Docker with declared CPU/memory/time/network budgets and resource measurement; default evaluation uses 3 seeds per agent-task. Themesproductivity adoption GeneralizabilityResults are specific to the 16 tasks and their heuristic resource budgets and may not generalize to other domains or production workloads., Specialized agents include domain-specific heuristics and engineering; performance may not generalize to other specialized designs or to purely LLM-based agents., Small number of seeds (N=3) limits inferential strength and variability estimation., GPU and some production resource patterns (e.g., bursty traffic, rate-limiting dynamics) are not fully represented (CPU-only containers noted)., Benchmarks measure per-episode resource use under controlled conditions; real production environments (heterogeneous hardware, network variability) could alter profiles.

Claims (12)

ClaimDirectionOutcomeConfidence & EvidenceDetails
AGENTSLABENCH evaluates autonomous agents using task correctness together with latency, cost, compute, memory, network usage, and safety-related measures under declared resource budgets. Organizational Efficiency positive Multi-dimensional resource-aware agent evaluation
Reading fidelity high
Study strength medium
n=16
0.18
AGENTSLABENCH v1.0 contains 16 task environments across 6 categories and 3,500 test samples, with declared resource envelopes for each task. Other positive Benchmark coverage and adoption-ready evaluation infrastructure
Reading fidelity high
Study strength medium
n=3500
0.18
Specialized agents achieved 100% success on fact_qa, web_shop, and achieved the reported success rates on retail and travel, while CodeGenAgent achieved 66.7% on code_gen. Task Completion Time positive Task success rate
Reading fidelity high
Study strength low
n=200
100% on fact_qa and web_shop; 83.3% on retail and travel; 66.7% on code_gen
0.09
The general-purpose baselines ReAct, PlanAndSolve, and Chain-of-Thought achieved 100% on fact_qa but 0% on retail, code_gen, web_shop, and travel; Reflexion and Random also achieved 0% on those domain tasks. Task Allocation negative Task success rate of general-purpose agents
Reading fidelity high
Study strength low
n=200
0% success on 4/5 domain tasks
0.09
The specialized agents remained within the declared resource budgets on the core tasks. Organizational Efficiency positive Resource-budget adherence
Reading fidelity high
Study strength low
n=3
0.09
For the retail task, RetailAgent had a median latency of 142 ms, cost of $0.002 per episode, and peak memory use of 180 MB, compared with a declared budget of 180 seconds and 8 GB. Task Completion Time positive Latency, API cost, and peak memory consumption
Reading fidelity high
Study strength low
n=3
142 ms median latency; $0.002 median cost; 180 MB median peak memory
0.09
EASR matched raw success for the reported specialized-agent results because the agents stayed within their declared latency, cost, and memory budgets. Organizational Efficiency null_result Efficiency-Adjusted Success Rate
Reading fidelity high
Study strength low
n=3
EASR equals success for all five reported specialized-agent conditions
0.09
CodeGenAgent operated closest to the latency budget among the specialized agents, using 95% of the latency budget and 15% of the cost budget on code_gen. Task Completion Time negative Latency and cost budget utilization
Reading fidelity high
Study strength low
n=3
95% latency-budget utilization; 15% cost-budget utilization
0.09
Specialized agents achieved nonzero success on related extended tasks, ranging from 41.7% on debugging by TravelPlanAgent to 75.0% on API integration by RetailAgent. Skill Acquisition positive Success rate on extended tasks
Reading fidelity high
Study strength low
n=200
41.7%–75.0% success across five extended tasks
0.09
Only the web_shop and travel comparisons between specialized agents and the best general baseline were statistically significant at p < 0.05. Team Performance mixed Difference in task success rate between specialized and baseline agents
Reading fidelity high
Study strength low
n=3
p < 0.05 for web_shop and travel only
0.09
The reported bootstrap confidence intervals for retail, code_gen, and travel success were extremely wide, spanning 0.0 to 1.0, because the analysis used only 3 seeds per condition. Other negative Statistical precision of estimated success rates
Reading fidelity high
Study strength high
n=3
95% CI [0.0, 1.0] for retail, code_gen, and travel
0.3
Among failed specialized-agent episodes, CodeGenAgent failures were primarily attributed to hallucinated API signatures, RetailAgent failures to margin-calculation errors, and TravelAgent failures to constraint conflicts. Error Rate negative Failure-mode distribution
Reading fidelity high
Study strength low
45% hallucinated API/tool-call failures; 60% margin-calculation errors; 55% travel constraint-conflict failures
0.09

Notes