惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
酷 壳 – CoolShell
酷 壳 – CoolShell
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
小众软件
小众软件
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Martin Fowler
Martin Fowler
P
Proofpoint News Feed
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why AI Agents Need Runtime Budgets Before Provider Calls
Assili Salim · 2026-06-19 · via DEV Community

Assili Salim

The problem

Most AI cost control happens too late.

A provider dashboard can tell you what happened after the API calls already executed.

That is useful.

But it does not stop a bad agent run while it is happening.

For basic LLM usage, this may be acceptable. You send one prompt, receive one response, and check the cost later.

Agents are different.

An AI agent is not one call.

It is a loop.

That loop may include:

model calls
tool calls
retries
fallback models
growing context
planning steps
validation steps
more retries

Each step may look reasonable by itself.

The failure appears across the whole run.

The expensive failure is usually boring

Many AI cost failures are not dramatic.

They are simple runtime failures:

the agent retries too many times
the prompt changes slightly but not meaningfully
the agent keeps calling tools without progress
the run exceeds a safe step count
the model price is unknown
the workflow crosses a budget limit

None of these require a complex theory.

They require boring runtime controls.

That is the point.

Production software already has limits everywhere.

Timeouts.

Memory limits.

Rate limits.

Retry limits.

Circuit breakers.

AI-agent runtimes need the same kind of thinking.

A dashboard is not a guardrail

A dashboard answers:

“What happened?”

A runtime guard answers:

“Should this next call happen?”

Those are different questions.

The second one is more important during execution.

Once the provider call is made, the cost is already real.

That is why AI-agent cost control should not only happen after the invoice.

It should happen before provider API calls execute.

Simple TypeScript-oriented thinking

Imagine an agent step before a provider call.

Before sending the request, the runtime can check a few things:

const decision = guard.beforeCall({
runId,
model,
prompt,
step,
estimatedCost,
});

if (!decision.allowed) {
throw decision.error;
}

const result = await provider.call({
model,
prompt,
});

The important idea is not the exact API.

The important idea is the position of the check.

It happens before the provider call.

That means the runtime can block dangerous behavior before money is spent.

Useful checks before the call

A practical guard layer can ask:

Is this model price known?

If not, fail closed.

Has this run exceeded its budget?

If yes, stop.

Has this agent exceeded max steps?

If yes, stop.

Is this prompt too similar to previous failed attempts?

If yes, block the loop.

Is the agent making no progress?

If yes, return a structured error.

These checks do not make the model smarter.

They make the runtime safer.

That matters.

Unknown model pricing should fail closed

Unknown pricing is easy to underestimate.

A typo in a model name can break assumptions.

A provider alias can change.

A fallback can route to something more expensive.

A dashboard may show this later.

A runtime guard can stop it before the call.

For production agent workflows, unknown pricing should be treated as a risk.

Failing closed is safer than guessing.

Max-step limits are production safety

A max-step limit sounds basic.

It is basic.

That is why it belongs in the runtime.

An agent that cannot finish in a reasonable number of steps may be confused.

Letting it continue forever is rarely useful.

A step limit gives the system a clear stopping point.

It also gives the developer a structured failure to inspect.

That is better than silent spending.

Where AI CostGuard fits

This is the layer I am building with AI CostGuard.

AI CostGuard is a local-first TypeScript / Node.js runtime safety layer for AI agents.

It is designed to catch cost and loop failures before provider API calls execute.

Current checks include:

retry storm detection
similar prompt loop detection
unknown model pricing blocks
max-step protection
budget guards
middleware and wrapper support
structured errors

It is not a billing ledger.

It is not a hard security boundary.

It is not an enterprise firewall.

It is a pre-call runtime kill switch for AI-agent cost and loop failures.

The takeaway

Cheaper tokens help normal runs.

Caching helps normal runs.

Routing helps normal runs.

But abnormal agent behavior needs runtime limits.

The key question is not only:

“How much did this model cost?”

The better question is:

“Should this next provider call be allowed?”

For AI agents, that question belongs before execution.