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

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
G
Google Developers Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
爱范儿
爱范儿
罗磊的独立博客
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
C
Check Point Blog
美团技术团队
宝玉的分享
宝玉的分享
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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 AI Bill Isn't a Model Problem. It's an Architecture ...
Yogesh Bakshi · 2026-06-23 · via DEV Community

If your LLM costs are climbing, the instinct is almost always the same: swap to a cheaper model. GPT-4 to GPT-4-mini. Claude Opus to Claude Haiku. Sometimes that helps a little. It rarely fixes the actual problem.

The actual problem, in most workflows I've looked at, is that every step gets routed through the LLM, even the steps that don't need language reasoning at all.

This post breaks down a simple mental model for deciding what should and shouldn't touch an LLM, with a working example you can adapt.

The four components of any AI workflow

Every automated workflow — whether it's a support ticket router, a fraud check, or a content pipeline — is built from some combination of four building blocks. They get treated the same once a workflow diagram is drawn flat, but they have wildly different cost and latency profiles.

Component What it does Think of it as Typical cost
Trigger Starts the workflow The doorbell ~$0
Deterministic ML Structured predictions — classify, score, rank The calculator Cents per 1,000 calls
LLM / Generative Reads, writes, reasons in language The writer Dollars per 1,000 calls
Tool / API Fetches or writes real data The hands Cents per 1,000 calls

The gap between row 2 and row 3 is the whole article. A classifier and an LLM call can solve the exact same problem, but one costs roughly 100-1000x more than the other, depending on model and provider. If you're not deliberately deciding which one handles which step, you're probably defaulting to the expensive one — because in frameworks like LangChain or a quick custom agent loop, it's just easier to shove everything into a prompt.

Where this actually shows up

Here's a workflow I see constantly: an automated support ticket triage system.

flowchart LR
    A[New support ticket] --> B{Classify intent}
    B --> C[Route to team]
    B --> D[Auto-draft response]
    D --> E[Update CRM]

A naive build sends the entire ticket text to an LLM and asks it to do everything at once: classify the intent, decide routing, draft a response, and format a CRM update — all in a single prompt, often with the LLM also asked to output structured JSON for the routing decision.

This works. It's also wildly overpriced for what it's doing, because step B — classification — doesn't need an LLM's reasoning ability. It needs a model that's good at one narrow task: mapping ticket text to one of N categories.

The breakdown

Trigger — ticket arrives via webhook. Free.

Deterministic ML — a lightweight classifier (a fine-tuned BERT-style model, or just a gradient-boosted classifier on embeddings) decides intent: billing, technical, account, spam. This is a calculator problem. Fast, cheap, and consistent — the same input gives the same output every time, which matters when you're debugging routing logic later.

LLM / Generative — only invoked for the response draft, and only for tickets that actually need a written reply (not, say, an auto-tagged spam ticket that gets silently archived).

Tool / API — the CRM update. A database write. No reasoning required.

In the naive version, every single ticket — including spam that gets immediately discarded — pays the LLM tax for classification it didn't need.

A simplified routing layer

Here's roughly what separating these concerns looks like in code. This is illustrative, not production-hardened — the point is the shape of the decision, not the specific classifier implementation.

from dataclasses import dataclass
from enum import Enum

class Intent(Enum):
    BILLING = "billing"
    TECHNICAL = "technical"
    ACCOUNT = "account"
    SPAM = "spam"

@dataclass
class Ticket:
    text: str
    customer_id: str

def classify_intent(ticket: Ticket) -> Intent:
    """
    Deterministic ML step. In practice this might be a small
    fine-tuned classifier, a logistic regression over embeddings,
    or even keyword/regex rules for simple cases.
    No LLM call here — this should run in single-digit milliseconds.
    """
    # placeholder logic
    if "unsubscribe" in ticket.text.lower():
        return Intent.SPAM
    if "invoice" in ticket.text.lower() or "charge" in ticket.text.lower():
        return Intent.BILLING
    return Intent.TECHNICAL


def needs_generated_response(intent: Intent) -> bool:
    """Only some intents need a written reply at all."""
    return intent != Intent.SPAM


def draft_response(ticket: Ticket, intent: Intent) -> str:
    """
    This is the only place an LLM call belongs in this pipeline.
    Everything upstream has already done the cheap filtering.
    """
    prompt = f"Write a helpful support reply for this {intent.value} ticket:\n{ticket.text}"
    return call_llm(prompt)  # your actual LLM client call


def update_crm(ticket: Ticket, intent: Intent, response: str | None) -> None:
    """Tool/API step. A database write, no reasoning involved."""
    crm_client.update_ticket(
        customer_id=ticket.customer_id,
        intent=intent.value,
        response=response,
    )


def handle_ticket(ticket: Ticket) -> None:
    intent = classify_intent(ticket)          # deterministic ML

    response = None
    if needs_generated_response(intent):       # cheap gate
        response = draft_response(ticket, intent)  # LLM only when needed

    update_crm(ticket, intent, response)        # tool/API

The structure matters more than the specific classifier you plug in. I've seen teams spend a week picking the "best" classifier model when the real win was just moving classification out of the prompt in the first place. The LLM call sits behind two cheap gates: classification, and a boolean check on whether a response is even warranted. Spam tickets never reach the LLM. Routine billing tickets that match a known pattern could, in a more developed version, skip the LLM entirely and use a templated response instead.

Illustrative cost comparison

To be clear: these are example numbers to illustrate the order of magnitude, not measured results from a specific deployment. Your actual costs depend on your provider, model choice, and ticket volume.

Approach Classification Response generation Total for 10,000 tickets/month (~30% spam, ~70% need replies)
Everything through LLM LLM call per ticket LLM call per ticket LLM called 10,000 times
Routed architecture Cheap classifier per ticket LLM call only for non-spam LLM called ~7,000 times

Even in this simple example, routing alone removes 30% of the most expensive calls before any model swap. Add templated responses for common patterns and caching for repeated questions, and the LLM call count drops further still — usually by more than switching models would save on its own.

When to actually reach for a smaller model

This isn't an argument against using cheaper LLMs. It's an argument for using them in the right place. Once you've separated deterministic work from generative work, "should I use a smaller/cheaper model" becomes a much narrower question: applied only to the generation step, where it belongs, instead of bolted onto everything.

A reasonable order of operations:

  1. Map your workflow against the four components above. Be honest about which steps are actually classification/extraction/ranking versus genuine language generation.
  2. Move deterministic steps out of the prompt. Classification, routing, scoring, structured extraction — these usually have a non-LLM solution that's faster and cheaper, even if it takes more upfront engineering than "just ask the LLM to do it."
  3. Gate the LLM call. Don't generate a response for tickets that don't need one. Don't summarize content nobody asked to see.
  4. Only then, evaluate model size for what's left. If you're still calling an LLM 10,000 times a month for response generation, that's the point where comparing model tiers actually matters.

The takeaway

A scoped-tools agent and a scoped-architecture pipeline are solving the same problem: give an expensive, general-purpose reasoning engine less to think about, so it spends its compute on the one thing it's actually needed for.

I'll admit the smaller-model conversation is more fun to have. It feels like progress swap a config value, watch the bill drop a little, move on. Rearchitecting which steps even touch the LLM is slower and less satisfying in the short term. But it's usually where the real savings are sitting, untouched, while everyone argues about which model is cheapest per token.