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

推荐订阅源

爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
博客园_首页
博客园 - 【当耐特】
量子位
S
SegmentFault 最新的问题
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
V
Visual Studio Blog
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
Y
Y Combinator Blog
博客园 - 聂微东
The Cloudflare Blog
小众软件
小众软件
J
Java Code Geeks
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
H
Help Net Security
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享

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
When Your AI API Budget Blew Up: Multi-Provider Routing
zhongqiyue · 2026-06-28 · via DEV Community

zhongqiyue

I remember the exact moment my heart sank. It was a Tuesday morning, and I opened the billing dashboard for our AI API provider to find a $3,200 charge staring back at me. Our previous month had been $400. A junior dev had accidentally left a loop running in production that was hammering the endpoint with redundant prompts.

That pain was real, but it forced me to solve a deeper issue: we were relying on a single AI provider, and our costs and reliability were completely out of our control.

The Real Problem

Like many teams, we'd started with one provider because it was the easiest. The API was straightforward, the documentation was decent. But as we scaled from a simple chatbot to more complex automations—parsing emails, summarizing documents, generating code reviews—the single point of failure became unbearable.

Rate limits started biting us during peak hours. Costs exploded because we had no way to route cheaper queries to a different model. And if that provider had an outage (which happened twice in three months), our product was dead in the water.

What I Tried First That Didn't Work

My first instinct was to just duplicate the calls: try provider A, if it fails, try provider B. I slapped together a quick Python script with try/except blocks and a requests library. It worked… for about two days.

# Naive fallback (don't do this)
def query_ai(prompt):
    try:
        return provider_a_call(prompt)
    except Exception:
        try:
            return provider_b_call(prompt)
        except Exception:
            raise RuntimeError("All providers failed")

Problems: each exception added seconds of latency, I had no way to prioritize cheaper providers, and I wasn't tracking which calls actually succeeded or failed. Plus, the code quickly turned into a spaghetti mess as we added a third provider.

Then I tried a more sophisticated queue-based approach with Celery and task retries. That made things even worse—we were overloading downstream APIs, hitting stricter rate limits, and paying for compute we didn't need.

What Eventually Worked: An Adaptive Routing Layer

After a lot of trial and error, I settled on a different pattern: a routing layer that sits between your application code and your AI providers. It's not fancy—it's essentially a Python class that uses a configurable strategy to pick which provider to call, tracks performance, and handles fallbacks gracefully.

Here's the core idea in about 80 lines:

import time
from typing import Callable, Dict, List

class AIRouter:
    def __init__(self, providers: Dict[str, Callable], config: dict = None):
        self.providers = providers
        self.config = config or {
            'cost_per_token': {
                'provider_a': 0.03,
                'provider_b': 0.01,
                'provider_c': 0.008,
            },
            'max_retries': 2,
            'timeout': 10,
            'preferred_order': ['provider_c', 'provider_b', 'provider_a']
        }
        self.stats = {name: {'calls': 0, 'errors': 0, 'total_time': 0.0} for name in providers}

    def query(self, prompt: str, context: dict = None) -> str:
        # Use context to optionally override order (e.g., based on user tier)
        order = self.config['preferred_order']
        if context and 'force_provider' in context:
            order = [context['force_provider']]

        last_error = None
        for provider_name in order:
            if provider_name not in self.providers:
                continue
            provider_fn = self.providers[provider_name]
            for attempt in range(self.config['max_retries']):
                try:
                    start = time.time()
                    result = provider_fn(prompt, timeout=self.config['timeout'])
                    elapsed = time.time() - start
                    self._record_success(provider_name, elapsed)
                    return result
                except Exception as e:
                    self._record_error(provider_name)
                    last_error = e
                    # Small backoff before retry
                    time.sleep(0.5 * (attempt + 1))
        raise RuntimeError(f"All providers failed. Last error: {last_error}")

    def _record_success(self, name, elapsed):
        self.stats[name]['calls'] += 1
        self.stats[name]['total_time'] += elapsed

    def _record_error(self, name):
        self.stats[name]['errors'] += 1

This class isn't production-ready—no logging, no async, no circuit breakers—but it's the skeleton you can build on. The key insight is decoupling the which provider logic from the how to call logic. Once you have that, you can add all sorts of strategies: cheapest-first, fastest-first, based on prompt length, or based on user subscription level.

I also added a simple cost-tracking module that estimates tokens and logs each request. That alone saved our team—we could see which endpoints were costing us the most and adjust the routing order accordingly.

The Setup in Practice

To use this, you'd define provider functions that wrap API calls. For example:

import openai
import anthropic

def call_openai(prompt: str, timeout=10):
    response = openai.ChatCompletion.create(
        model="gpt-3.5-turbo",
        messages=[{"role": "user", "content": prompt}],
        timeout=timeout
    )
    return response.choices[0].message.content

def call_anthropic(prompt: str, timeout=10):
    client = anthropic.Anthropic()
    message = client.messages.create(
        model="claude-3-haiku-20240307",
        max_tokens=1024,
        messages=[{"role": "user", "content": prompt}],
        timeout=timeout
    )
    return message.content[0].text

# We also add a local model for cheap tasks
from transformers import pipeline
gen = pipeline('text2text-generation', model='google/flan-t5-small')
def call_local(prompt: str, timeout=10):
    return gen(prompt)[0]['generated_text']

# Then wire it up
router = AIRouter(
    providers={
        'openai': call_openai,
        'anthropic': call_anthropic,
        'local': call_local
    },
    config={
        'preferred_order': ['local', 'openai', 'anthropic'],
        'cost_per_token': {
            'local': 0.0,
            'openai': 0.002,  # gpt-3.5-turbo
            'anthropic': 0.00025  # claude-haiku
        }
    }
)

# Use it in your app
result = router.query("Summarize this email: ...")

Now, when we get a simple request like "summarize an email", the router tries local first (free), and only falls back to paid APIs if it fails or times out. This cut our AI bill by 60% in the first month.

Lessons Learned & Trade-offs

  • Routing logic is deceptively simple. The class above is <100 lines, but you'll spend real time tweaking the priority order and timeout values based on real traffic patterns.
  • Latency vs. Cost tradeoff is real. Local models are cheap but slow on CPU. We ended up moving local inference to a GPU node for better latency, which added infrastructure cost. For some use cases, it's still cheaper than API calls.
  • You need monitoring. Without stats, you're blind. We integrated with our existing observability stack to track provider performance and cost per user.
  • Not all models speak the same language. Claude and GPT may handle formatting differently. We had to add a normalisation layer for structured outputs (JSON parsing, etc.).
  • Provider API changes happen. We got burned when Anthropic deprecated their old message API. The routing layer meant we only needed to update one provider function, but it was still a scramble.

When NOT to Use This Approach

This pattern adds complexity. If you have a single, stable use case with predictable load and acceptable costs, don't bother. Also, if you need strict consistency (e.g., always the same model version for reproducibility), routing is a bad idea.

What I'd Do Differently Next Time

I'd start with a simpler config-driven router from day one, rather than the ad-hoc fallback mess. I'd also add rate-limit awareness—my current router doesn't proactively slow down when a provider is throttling; it just fails and moves on. A proper circuit breaker pattern would be better.

And I'd definitely not leave a loop running in production. But maybe that's just me.

The whole experience taught me that the real art isn't in picking the "best" AI model—it's in building systems that gracefully handle the messiness of real-world APIs.

So, what's your setup look like? Are you using a single provider or something more distributed?