SShortSingh.
Back to feed

Agent AI Systems Spend Most Time Idle, Driving Up Costs Beyond Model Fees

0
·1 views

A peer-reviewed study called 'The Harness Effect' found that model inference accounts for only about 20% of total AI agent costs, with the remaining 80% consumed by infrastructure, orchestration, tooling, and governance. Researchers found that switching orchestration layers alone — without changing the underlying model — reduced cost per task by 41%, from $0.21 to $0.12. Much of the hidden expense comes from agents sitting idle between steps: waiting on tool responses, human approvals, retries, and polling loops. CockroachDB and Stanford Digital Economy Lab research further identified that redundantly re-sent context — such as system prompts and state history — accounts for 62% of agent inference bills. Goldman Sachs projects a 24-fold increase in token consumption by 2030, meaning these inefficiencies are set to grow significantly worse over time.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Shadcn UI Lets Developers Own and Customize Components in Next.js Projects

Shadcn UI is a component collection built on Radix UI and styled with Tailwind CSS that differs from traditional libraries by copying code directly into a project rather than installing it as a dependency. This approach gives developers full ownership and the freedom to modify any component as needed. Setting up Shadcn UI in a Next.js app requires running a single initialization command, which generates a configuration file, helper utilities, and updates global styles. Individual components like buttons or cards can then be added on demand via the CLI and imported directly from the project's own file structure. The setup makes it straightforward to integrate accessible, customizable UI elements without relying on an external package dependency.

0
ProgrammingDEV Community ·

Developer Kicks Off 100DaysOfCode Challenge with Frontend Web Development

A developer has launched a 100-day coding challenge focused on frontend web development, beginning with JavaScript fundamentals on Day 1. Rather than following passive tutorials, the learner opted for hands-on practice to build a solid programming foundation. Four beginner exercises were completed, covering variables, tax calculations, percentage scoring, and conditional voting eligibility logic. All practice code is being tracked publicly on a GitHub repository to maintain consistency and monitor progress over the challenge period.

0
ProgrammingDEV Community ·

Six Common Pagination Bugs That Break Oracle Fusion REST API Integrations

Oracle Fusion REST APIs paginate all collection responses by default, returning only the first 25 rows unless developers explicitly handle pagination — a behavior that can silently cause incomplete data fetches. Common integration bugs include ignoring the hasMore flag, using incorrect offset calculations, and failing to account for server-side limit overrides that can cause entire pages to be skipped. Unstable query ordering without a unique sort key can cause records to shift between paginated calls, leading to missed or duplicated data in nightly syncs. Repeatedly requesting totalResults on every page adds unnecessary database load, and restarting pagination from scratch after a 429 rate-limit error wastes thousands of API calls. Developers can avoid these pitfalls by always sorting on a stable unique key, incrementing offsets using the response's actual limit value, and using the onlyData=true parameter to reduce payload size.

0
ProgrammingDEV Community ·

ScorAxis Uses Claude AI and AWS Bedrock to Score Résumés for ATS Compatibility

A developer has built ScorAxis, a tool that scores résumés on a 0–100 scale for compatibility with Applicant Tracking Systems (ATS), which silently filter out most job applications before they reach recruiters. The platform uses a hybrid scoring model: a deterministic Python-based layer handles up to 70 points, while Claude Sonnet via AWS Bedrock contributes the remaining 30 through AI-driven checks. The backend runs on FastAPI, AWS ECS Fargate, and PostgreSQL, while the frontend is built with Next.js 15 and hosted on Vercel. Key engineering decisions included forcing structured tool use over prompt engineering to ensure reliable JSON output and separating deterministic logic from AI logic from the outset. The tool is live at scoraxis.com, with the developer citing early user feedback as more valuable than continued internal tuning.