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

推荐订阅源

T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
雷峰网
雷峰网
罗磊的独立博客
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
博客园 - 司徒正美
Last Week in AI
Last Week in 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
I Replaced $800/mo in API Costs with a Local Llama 4 Setu...
doltter · 2026-04-24 · via DEV Community

doltter

My team runs an e-commerce operation that pushes around 80,000 product descriptions through LLMs every month. We were spending $800+ on GPT-4o API calls. Last month we moved the bulk generation pipeline to Llama 4 Maverick running locally via Ollama. Monthly cost dropped to about $40 in electricity.

Here's the full setup, what worked, what didn't, and where we still use cloud APIs.

Why bother running locally

Three reasons pushed us off the API-only approach:

Cost at scale. 80K descriptions at ~500 tokens each, GPT-4o was billing us $600-800/month. Fine for a startup burning cash, not great when you're trying to run profitably.

Data privacy. We process competitor pricing data and customer purchase history for segmentation. Sending that to a third-party API means it leaves your infrastructure. With GDPR customers in our mix, local processing just removes an entire category of compliance headaches.

Rate limits and latency. During product launch weeks we'd hit rate limits and queue up requests. A local model doesn't throttle you — it just runs as fast as your GPU allows.

Hardware and what to expect

We tested on three setups:

Machine VRAM Speed Notes
Mac M3 Max 64GB Unified ~18 tok/s Fine for dev/testing, too slow for batch
RTX 4090 24GB 24GB ~35 tok/s Our production choice. Handles 800-1200 descriptions/hr
2x RTX 4090 48GB ~55 tok/s Overkill for our volume, but nice for parallel jobs

If your VRAM is too small, Ollama silently falls back to CPU. You'll see 3-5 tokens/second and wonder what went wrong. Check ollama ps to verify the model loaded onto GPU.

Setup (takes about 10 minutes)

Install Ollama:

# macOS
brew install ollama

# Linux
curl -fsSL https://ollama.com/install.sh | sh

Enter fullscreen mode Exit fullscreen mode

Pull the Hermes fine-tune of Maverick (this is the version you want — base Maverick has flaky JSON output):

ollama pull hermes3:maverick
# ~25GB download, grab a coffee

Enter fullscreen mode Exit fullscreen mode

Start the server and test:

ollama serve &

curl http://localhost:11434/api/generate -d '{
  "model": "hermes3:maverick",
  "prompt": "Generate a product title for: wireless bluetooth earbuds, IPX7 waterproof, 30hr battery, noise cancelling.",
  "stream": false
}'

Enter fullscreen mode Exit fullscreen mode

Why Hermes and not base Maverick

We wasted two days on base Maverick before switching. The difference:

  • JSON output: Base Maverick returns valid JSON about 88% of the time. Hermes hits 97%+. When you're generating 80K items, that 9% gap means thousands of failed parses and retries.
  • Function calling: We use tool calls to pull inventory data mid-generation. Base model: 78% accuracy. Hermes: 93%.
  • System prompt adherence: Tell base Maverick "always respond in German" and it drifts back to English after ~20 turns. Hermes stays consistent.

The actual pipeline code

Our production script is a Python worker that reads from a job queue and writes to a database. Here's the core of it:

import httpx
import json

OLLAMA_URL = "http://localhost:11434/v1/chat/completions"

def generate_description(product: dict, lang: str = "en") -> dict:
    prompt = f"""Write a product description for an e-commerce listing.
Product: {json.dumps(product)}
Language: {lang}
Output JSON: {{"title": "...", "description": "...", "bullet_points": [...]}}
Only output the JSON object, nothing else."""

    resp = httpx.post(OLLAMA_URL, json={
        "model": "hermes3:maverick",
        "messages": [
            {"role": "system", "content": "You are a product copywriter. Output valid JSON only."},
            {"role": "user", "content": prompt}
        ],
        "temperature": 0.7,
    }, timeout=60)

    text = resp.json()["choices"][0]["message"]["content"]
    text = text.strip().removeprefix("```

json").removesuffix("

```").strip()
    return json.loads(text)

product = {
    "name": "Wireless Earbuds Pro",
    "material": "ABS plastic, silicone tips",
    "features": ["IPX7 waterproof", "30hr battery", "ANC"],
    "price_range": "$25-35"
}

result = generate_description(product, lang="de")
print(json.dumps(result, indent=2, ensure_ascii=False))

Enter fullscreen mode Exit fullscreen mode

Ollama's API is OpenAI-compatible, so if you have existing code that calls openai.ChatCompletion, change the base URL and model name. That's it.

from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:11434/v1",
    api_key="not-needed"
)

response = client.chat.completions.create(
    model="hermes3:maverick",
    messages=[{"role": "user", "content": "your prompt here"}]
)

Enter fullscreen mode Exit fullscreen mode

Where local still loses

We didn't move everything off cloud APIs. Three tasks still run through Claude or GPT-4o:

  1. Brand voice copy — when the output needs to sound like a specific brand, cloud models are noticeably better. Maverick writes competent descriptions but they read a bit flat compared to Claude's output.
  2. Anything under 10K requests/month — the break-even point is somewhere around 50K monthly requests. Below that, GPT-4o-mini at $150/mo beats the hassle of maintaining local hardware.
  3. One-off creative tasks — ad headlines, email subject lines, anything where you want to iterate on quality. Cloud models with their bigger parameter counts just produce more varied and interesting options.

Monthly cost comparison (our actual numbers)

Before (API only) After (hybrid)
Bulk descriptions (80K) $620 (GPT-4o) $40 electricity
Creative copy (5K) $180 (Claude Sonnet) $180 (Claude Sonnet)
Ad headlines (2K) $30 (GPT-4o-mini) $30 (GPT-4o-mini)
Total $830/mo $250/mo

Hardware was a one-time $1,800 for the RTX 4090 rig. Paid for itself in three months.

Resources

If you're building something similar, I put together a few things that might help:


The local LLM space moves fast. Six months ago, running a model this capable on a single consumer GPU wasn't realistic. Now it costs less than a Netflix subscription to process volumes that used to run up four-figure API bills. If you're hitting scale where API costs hurt, it's worth an afternoon to test.