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

推荐订阅源

博客园 - 三生石上(FineUI控件)
D
Docker
GbyAI
GbyAI
宝玉的分享
宝玉的分享
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Vercel News
Vercel News
博客园_首页
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
V
V2EX
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
IT之家
IT之家
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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
Hybrid LLM Routing: Ollama + Claude API Without Quality D...
Ravil Minigu · 2026-05-02 · via DEV Community

Ravil Minigulov

The bill arrives at the end of the month
You ship a bot. Claude responds well, the client is happy. The first month goes by quietly. Then you open Anthropic billing: $200+ for traffic from a small café.
You dig into the logs. 60,000 requests over a month. "Are you open on Sundays?", "What's your address?", "Is delivery free?" — thousands of times. Every single one routed through Claude Sonnet with a 400-token system prompt.
This isn't a model cost problem. It's an architecture problem: a uniform model serving fundamentally non-uniform load.
Request complexity in a business bot isn't normally distributed — it's bimodal. A long tail of FAQ requests where Claude's power is completely wasted, and a narrow spike of complaints, edge cases, and generation tasks where it's actually needed. If you don't split these flows, you're paying for cloud inference where a local model would have been fine.

Why "just use Ollama" doesn't work
The obvious fix: move everything to Ollama. Models like llama3.1:8b or mistral:7b on a GPU give acceptable quality for simple tasks at zero variable cost.
The problem is that open-source models degrade in specific scenarios: long context (>3K tokens), strict output format requirements, multi-step reasoning. In a bot with RAG, these come up regularly. Moving everything to Ollama means unpredictable quality exactly where the client will notice.
The other take — "only pay Claude for complex requests" — is directionally right, but what counts as "complex"? Without a formal classifier, this turns into manually maintained conditionals in code that don't scale and break with every traffic shift.
You need a router: a component that decides which model handles the request before it goes anywhere.

Architecture: one interface, two tiers
The core requirement: the router must be invisible from the outside. From the FastAPI endpoint's perspective, there's a single llm_client.complete() that always returns a response. Where the request went is an implementation detail.
There's no load balancing between Ollama and Claude — there's a hierarchy. Ollama is the first tier, Claude is escalation. Escalation happens in three cases: the router decided so, Ollama returned an invalid response, or Ollama is unavailable.

The router: asymmetry of error cost
The router isn't a binary "simple/complex" classifier. The correct framing: minimize the expected cost of a routing error.
Error toward Ollama for a complex request: quality degradation, retry, potentially a broken conversation. In B2B — real business consequences for the client.
Error toward Claude for a simple request: a few cents of overspending.
The asymmetry is obvious. It produces a concrete rule: when in doubt, go to the cloud. This isn't being conservative — it's correctly accounting for the real cost of each error type.
Decision logic is two-layered.
Hard rules fire first and override any scoring. Complaints, legal context, generation tasks — always Claude. A clean request for opening hours or an address — always Ollama.
Soft scoring kicks in when hard rules don't fire. Factors: RAG context volume, format requirements, message length, the number of consecutive clarifying questions in the dialog (a rising count signals that previous answers weren't solving the problem).
The routing threshold is deliberately shifted:

target = (
    ModelTarget.CLOUD
    if signal.score > 0.35 or signal.confidence < 0.6
    else ModelTarget.LOCAL
)

Enter fullscreen mode Exit fullscreen mode

confidence < 0.6 — if the router isn't confident enough in its classification, the request goes to Claude. Explicit codification of the asymmetry.

Three things that break in production
Ollama's formatted output. Even with an explicit instruction to return JSON, llama3.1:8b periodically wraps it in a markdown code block or adds surrounding text. In production this isn't an edge case — it's a regular scenario. Solution: parsing with multiple fallback patterns, and after two failed attempts — automatic escalation to Claude. Not three retries, not four: a second retry on Ollama is slower than a single Claude call.
Context window under load. Ollama allocates num_ctx on the first request to a model and doesn't adjust it dynamically within a session. If the service started with the default num_ctx=2048 and a request arrives with 3,500 tokens of RAG context — the context gets silently truncated. No error, just a response about nothing. num_ctx must be passed explicitly on every request, with headroom above the actual volume.
Latency degradation during spikes. On a single GPU, Ollama doesn't parallelize requests — it queues them. During sudden traffic spikes, p95 latency grows linearly, the router doesn't know this, and keeps routing locally. You need a circuit breaker on latency, not just errors: when the p95 threshold is exceeded, all traffic temporarily goes to Claude regardless of classification. This needs to be a separate component — don't add the condition into the router logic, or the breaker's state gets tangled up with classification.

Observability
Without proper logging, the system is opaque: you see costs but don't understand what's driving them.
The key is logging not just routed_to, but also actual_model. These fields diverge during escalation. Escalation frequency is the primary health metric for the router: if it's growing, either the traffic pattern changed, the local model degraded, or the thresholds need recalibration.
The second important signal is a proxy quality metric. Not manual response labeling — downstream behavior: if a user asks a follow-up question within two minutes of a response, the first answer probably didn't solve the problem. Measurable with zero additional infrastructure.

The numbers
Real case: a Telegram bot for a café, one month of observation after rolling out the router.
Request typeTraffic shareModelFAQ, hours, address, prices61%OllamaMenu clarifications, ingredients18%OllamaEdge cases, complaints12%ClaudeRAG over documents, generation9%Claude
Cost before: $234/month. After: $47/month. Quality by client complaints — unchanged: the scenarios that used to go to Claude still go to Claude.
The 80% cost reduction isn't the goal of the architecture. It's a side effect of making request cost a function of complexity rather than a constant. The real gain: the system became legible. Now you can see what each interaction type costs and know exactly what to do about it when traffic grows.