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

推荐订阅源

Recent Announcements
Recent Announcements
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
T
Tailwind CSS Blog
博客园_首页
IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
有赞技术团队
有赞技术团队
大猫的无限游戏
大猫的无限游戏
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 司徒正美
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
Jina AI
Jina AI
月光博客
月光博客
小众软件
小众软件
S
SegmentFault 最新的问题
量子位
阮一峰的网络日志
阮一峰的网络日志
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知

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
Your LLM Bill Is Exploding Because of Architecture, Not P...
Ismail Haddo · 2026-05-23 · via DEV Community

LLM per-token prices fell between 9x and 900x over the past year. Yet most teams running agentic AI in production are seeing their API bills go up, not down. Here is exactly why, and the three code-level interventions that cut spend 60-80% without touching quality.

Why Agentic Workloads Break Your Token Budget

A chatbot interaction: 1 LLM call, ~3,000-10,000 tokens. Done.

An agentic task: plan the approach, call a tool, process results, decide next step, call another tool, validate output, loop if needed. That is 10-20 LLM calls, each carrying the growing context window from all previous steps. By step 8, you may be passing 60,000 tokens into every call -- most of it noise.

The math: agentic workflows burn 5-30x more tokens per completed task than a standard chatbot exchange. A 10x price drop combined with a 20x token increase means your bill doubled.

There are three places the money leaks.


Leak 1: Context Bloat -- Fix with Compression

Most agentic pipelines append every step's output to a running context that gets passed to every subsequent LLM call. By step 6, you are paying full price to send the model information from step 1 that is no longer relevant.

Before passing context to any LLM call, compress it:

from anthropic import Anthropic
client = Anthropic()

def compress_context(conversation_history: list[dict], current_task: str,
                     token_budget: int = 20000) -> list[dict]:
    """
    Compress older turns if context exceeds budget.
    Keeps recent turns intact, summarizes older ones.
    """
    raw_tokens = sum(len(str(m)) // 4 for m in conversation_history)
    if raw_tokens <= token_budget:
        return conversation_history

    recent = conversation_history[-3:]
    older = conversation_history[:-3]
    if not older:
        return recent

    summary_prompt = f"""Summarize the following conversation history into 2-3 sentences,
keeping only information relevant to: {current_task}

History: {older}"""

    summary = client.messages.create(
        model="claude-haiku-4-5-20251001",  # cheap model for summarization
        max_tokens=300,
        messages=[{"role": "user", "content": summary_prompt}]
    ).content[0].text

    compressed = [{"role": "system", "content": f"[Earlier context summary]: {summary}"}]
    compressed.extend(recent)
    return compressed

# Before any LLM call in your agent loop:
context = compress_context(conversation_history, current_task="validate invoice fields")
response = client.messages.create(model="claude-sonnet-4-6", messages=context, max_tokens=1000)

Enter fullscreen mode Exit fullscreen mode

This alone typically reduces context size by 50-70% in long-running agentic workflows.


Leak 2: Frontier Model Overuse -- Fix with Model Routing

Using a frontier model for every step in your pipeline is like hiring a principal engineer to sort your email. Most agent steps -- classification, format conversion, simple lookups, routing decisions -- work fine with a small, fast, cheap model.

from enum import Enum
from dataclasses import dataclass

class TaskComplexity(Enum):
    SIMPLE = "simple"
    MEDIUM = "medium"
    COMPLEX = "complex"

@dataclass
class ModelConfig:
    model: str
    cost_per_1k_input: float
    cost_per_1k_output: float

MODEL_TIERS = {
    TaskComplexity.SIMPLE: ModelConfig("claude-haiku-4-5-20251001", 0.00025, 0.00125),
    TaskComplexity.MEDIUM: ModelConfig("claude-sonnet-4-6", 0.003, 0.015),
    TaskComplexity.COMPLEX: ModelConfig("claude-opus-4-6", 0.015, 0.075),
}

def classify_task(task_description: str) -> TaskComplexity:
    simple_keywords = ["classify", "categorize", "is this", "format", "convert", "route", "label"]
    complex_keywords = ["analyze", "reason", "debug", "design", "plan", "evaluate", "compare"]
    task_lower = task_description.lower()
    if any(kw in task_lower for kw in simple_keywords):
        return TaskComplexity.SIMPLE
    elif any(kw in task_lower for kw in complex_keywords):
        return TaskComplexity.COMPLEX
    return TaskComplexity.MEDIUM

def routed_llm_call(task: str, messages: list[dict]) -> tuple[str, float]:
    complexity = classify_task(task)
    config = MODEL_TIERS[complexity]
    response = client.messages.create(model=config.model, max_tokens=1000, messages=messages)
    input_tokens = response.usage.input_tokens
    output_tokens = response.usage.output_tokens
    cost = (input_tokens / 1000 * config.cost_per_1k_input +
            output_tokens / 1000 * config.cost_per_1k_output)
    return response.content[0].text, cost

Enter fullscreen mode Exit fullscreen mode

In most production pipelines, 70-80% of steps classify as SIMPLE or MEDIUM. Routing those to cheaper models cuts your average cost per task by 60-70%.


Leak 3: Redundant Calls -- Fix with Semantic Caching

Your agentic system is probably making the same LLM calls repeatedly. Different phrasing, same semantic content. Standard caching misses these. Semantic caching embeds the query and retrieves cached results for near-matches.

import numpy as np
from datetime import datetime, timedelta

class SemanticCache:
    def __init__(self, similarity_threshold: float = 0.92, ttl_hours: int = 24):
        self.cache: list[dict] = []
        self.threshold = similarity_threshold
        self.ttl = timedelta(hours=ttl_hours)

    def _embed(self, text: str) -> list[float]:
        # Replace with real embedding model in production
        import hashlib
        seed = int(hashlib.md5(text.encode()).hexdigest(), 16) % (2**32)
        return np.random.RandomState(seed).randn(1536).tolist()

    def _cosine_similarity(self, a, b) -> float:
        a, b = np.array(a), np.array(b)
        return float(np.dot(a, b) / (np.linalg.norm(a) * np.linalg.norm(b)))

    def get(self, query: str) -> str | None:
        query_embedding = self._embed(query)
        now = datetime.utcnow()
        for entry in self.cache:
            if now - entry["timestamp"] > self.ttl:
                continue
            if self._cosine_similarity(query_embedding, entry["embedding"]) >= self.threshold:
                return entry["response"]
        return None

    def set(self, query: str, response: str):
        self.cache.append({
            "query": query,
            "embedding": self._embed(query),
            "response": response,
            "timestamp": datetime.utcnow()
        })

Enter fullscreen mode Exit fullscreen mode

Production deployments with repetitive enterprise workloads typically see 30-50% cache hit rates -- eliminating a third to half your API calls entirely.


Putting It Together: Cost Tracking Per Step

None of this works without measurement. Add per-step cost tracking to your agent loop:

from dataclasses import dataclass, field
import time

@dataclass
class AgentStep:
    name: str
    model: str
    cache_hit: bool
    cost_usd: float
    duration_ms: float

class CostAwareAgentRunner:
    def __init__(self):
        self.steps: list[AgentStep] = []
        self.cache = SemanticCache()

    def run_step(self, name: str, task: str, messages: list[dict]) -> str:
        start = time.time()
        cached = self.cache.get(task)
        if cached:
            self.steps.append(AgentStep(name, "cache", True, 0.0, (time.time()-start)*1000))
            return cached

        response_text, cost = routed_llm_call(task, messages)
        self.cache.set(task, response_text)
        self.steps.append(AgentStep(
            name, classify_task(task).value, False, cost, (time.time()-start)*1000
        ))
        return response_text

    def cost_report(self) -> dict:
        total = sum(s.cost_usd for s in self.steps)
        hits = sum(1 for s in self.steps if s.cache_hit)
        return {
            "total_cost_usd": round(total, 6),
            "steps": len(self.steps),
            "cache_hit_rate": hits / len(self.steps) if self.steps else 0,
            "by_step": [{"name": s.name, "cost": s.cost_usd, "model": s.model} for s in self.steps]
        }

Enter fullscreen mode Exit fullscreen mode

Once you have this instrumentation, the top three steps by token consumption almost always account for 60-70% of total spend. That tells you exactly where to focus.

A logistics client: $40K/month in LLM API costs, down to under $12K after model routing + semantic caching + context compression. Same volume, same quality. Frontier model performed better on complex steps because it was receiving cleaner, more focused context.


If you are hitting this in production and want a second set of eyes, feel free to DM me -- happy to dig in.