DEV Community

RileyKim
RileyKim

Posted on

My Billable-Hour Guide to China's Four AI Model Families

My Billable-Hour Guide to China's Four AI Model Families

Look, I'll be straight with you. I'm a freelance dev running my own little one-person shop, and every API call I make comes out of what I bill my clients. So when someone tells me there's a fleet of Chinese-built LLMs that can deliver GPT-4o-tier output for literally pennies per million tokens, my ears perk up. I'm not here to write a research paper. I'm here to figure out which model pays my rent.

Over the past few months I've been running real client work through DeepSeek, Qwen, Kimi, and GLM — all routed through Global API's unified endpoint so I don't have to manage four different API keys, SDKs, or dashboards. Here's my honest, ROI-obsessed breakdown.

The Short Version (For Skimmers)

If you want the TL;DR before I get into the weeds:

  • DeepSeek V4 Flash is my daily driver. $0.25 per million output tokens and it handles 80% of what I throw at it.
  • Qwen has the deepest catalog. Whatever size or specialty you need, they probably ship it.
  • Kimi K2.5 is the brainy one. Premium pricing at $3.00/M output, but I use it when reasoning actually matters.
  • GLM is the Chinese-language workhorse and doubles as my budget option for image tasks.

Now let me show you the math on each.

Why I Even Bothered Testing Four Models

Here's the deal: I had a GPT-4o habit. Built up over months of client projects. Comfortable, predictable, expensive. When I started tracking my actual API spend, I noticed a single image-captioning contract was running me more than the front-end work attached to it.

I started shopping around. Western providers are all roughly the same price tier. Then I kept hearing whispers about Chinese models going toe-to-toe with the big names at a tenth of the cost. Sounded like a sales pitch until I ran the same prompts through DeepSeek V4 Flash and watched the output match GPT-4o in quality while my invoice per 1,000 calls dropped from roughly forty bucks to under ten.

That's when I went down the rabbit hole.

DeepSeek: The Reason I Sleep Better at Night

I'll lead with my favorite because it changed my margins the most. DeepSeek's V4 Flash is the model I keep open in VS Code while I work. At $0.25 per million output tokens, I honestly forget I'm paying for it. Let me put that in terms you can actually feel: a typical client task that processes maybe 200,000 tokens of output costs me five cents. Five cents. I used to spend that just refreshing my email.

My Real-World DeepSeek Costs

I'll share what I actually pulled a couple months ago. One client needed me to process and summarize 1,200 customer support tickets. Each ticket averaged about 800 input tokens and I generated roughly 200 tokens of summary. Across the whole batch:

  • Output tokens: roughly 240,000
  • Cost at V4 Flash rates: 240,000 × $0.25 / 1,000,000 = $0.06

That job billed out at $600. My actual API cost was six cents. I could literally run the entire contract on spare change from my laundry.

The Models I Actually Use

Here's my cheat sheet for DeepSeek, all output pricing per million tokens:

  • V4 Flash — $0.25. My default for daily coding, content drafting, quick explanations.
  • V3.2 — $0.38. When I want the freshest architecture for slightly trickier work.
  • V4 Pro — $0.78. Production work where quality has to be bulletproof.
  • R1 — $2.50. The reasoner. Pull this one out for math proofs, complex logic, multi-step debugging.
  • Coder — $0.25. Specifically tuned for code. I don't bother with a separate coders subscription anymore.

Where It Stumbles

I'm not going to pretend it's perfect. DeepSeek doesn't natively process images, which means if a client sends me a screenshot of a bug report, I'm routing that job elsewhere. The Chinese-language output is also slightly rougher than what I get from GLM or Kimi — useful for me since 90% of my work is in English, but a deal-breaker for anyone doing local Chinese content.

Here's how I actually call it for my IDE assistant script:

from openai import OpenAI

client = OpenAI(
    api_key="ga_xxxxxxxxxxxx",
    base_url="https://global-apis.com/v1"
)

response = client.chat.completions.create(
    model="deepseek-v4-flash",
    messages=[
        {"role": "system", "content": "You are a senior Python developer. Be concise."},
        {"role": "user", "content": "Refactor this Django view to use class-based generic views."}
    ],
    max_tokens=800
)

print(response.choices[0].message.content)
Enter fullscreen mode Exit fullscreen mode

That snippet alone probably saves me an hour a week on boilerplate refactors.

Qwen: The Catalog That Won't Quit

If DeepSeek is my favorite knife, Qwen is the entire Swiss Army knife — with every blade I might ever need. Alibaba's team has been cranking out models at a pace I genuinely cannot keep up with. Whatever niche you have, Qwen probably has a model for it.

My Qwen Playbook

Here's what I keep in my notes app for quick lookup:

  • Qwen3-8B — $0.01/M. The absurdly cheap one. I use it for classification, simple extraction, anything where I'd previously default to a regex.
  • Qwen3-32B — $0.28/M. The generalist. Same neighborhood as V4 Flash pricing, different strengths.
  • Qwen3-Coder-30B — $0.35/M. When I want code specifically tuned for code.
  • Qwen3-VL-32B — $0.52/M. Vision-language model. My DeepSeek workaround for image tasks.
  • Qwen3-Omni-30B — $0.52/M. Handles audio, video, and image. Rented once for a podcast transcription client. Worked great.
  • Qwen3.5-397B — $2.34/M. Enterprise-grade reasoning. Reserved for when a client's CFO asks me to make sure the analysis is bulletproof.

The $0.01 price on Qwen3-8B is so low that I built a small spam-classification pipeline for a client's contact form and the entire month's bill came to less than my morning coffee.

A Quick Comparison

V4 Flash vs Qwen3-32B at the same $0.25-$0.28/M price point is the question I get asked most. My answer: both are excellent. DeepSeek edges ahead on English output consistency and raw speed. Qwen is your pick if you want vision tooling on a budget or if Alibaba's deployment infrastructure matters for your contract.

One irritation: the naming convention is genuinely confusing. Qwen3, Qwen3.5, Qwen3.6, Qwen3-Omni — I keep a sticky note on my monitor tracking which is which. But that's the cost of having the deepest lineup.

Here's a typical general-purpose call I make with Qwen3-32B:

response = client.chat.completions.create(
    model="Qwen/Qwen3-32B",
    messages=[
        {"role": "user", "content": "Write a Python function to merge two sorted lists in O(n) time. Include docstring and one example."}
    ],
    temperature=0.3
)
Enter fullscreen mode Exit fullscreen mode

That function ended up in a client's codebase. Worked first try.

Kimi: When I Need the Model to Actually Think

Kimi from Moonshot AI is the priciest option on my list, but I'm not paying for speed or general-purpose work. I'm paying because this thing reasons. When a client throws me a multi-step problem with caveats and dependencies, Kimi K2.5 at $3.00 per million output tokens is where I go.

When the Premium Justifies Itself

Last quarter I had a contract dispute analysis — basically, "given this contract clause and these three amendments, what exposure does my client have?" Western models gave me confident-sounding answers that turned out to be subtly wrong. Kimi K2.5 walked through the reasoning step by step, caught an ambiguity in the second amendment, and saved what would've been a $40,000 mistake.

That one query probably cost me $0.30. The avoided mistake was forty grand. That's a 130,000-to-1 ROI. I'm not kidding when I say this model has paid for my entire API subscription for the year.

Honest Pricing Note

The full Kimi range runs $3.00 to $3.50 per million output tokens. That's premium territory. I don't keep it in my hot path. I treat it like a specialist consultant I bring in for specific jobs. If you're running primarily on cost, Kimi probably isn't your daily model. But if you have any reasoning-heavy workflow — legal docs, complex debugging, financial modeling — it earns its keep fast.

Kimi doesn't have a budget tier in the catalog, which is honestly the only thing keeping it from being my universal default.

GLM: The Quiet Specialist You Should Know About

Zhipu AI's GLM family is the one most freelancers overlook, and I think that's a mistake. Specifically, GLM-4-9B at $0.01/M output is the joint-cheapest model in this entire comparison, tied with Qwen3-8B. And GLM-5 at $1.92/M is a serious contender for production work where you need more horsepower without paying Kimi prices.

Why GLM Earns a Spot in My Rotation

Two reasons specifically:

  1. Chinese language handling is best-in-class. The original article's table rates it five stars on Chinese, same as Kimi. In my tests, GLM produced noticeably more natural idiomatic Chinese than DeepSeek. If you have any Chinese-content work — translations, marketing copy, even internal docs for bilingual teams — GLM is the move.

  2. GLM-4.6V gives me vision capabilities. DeepSeek's lack of vision was my biggest daily friction. GLM-4.6V fills that gap, and at far less than what I was paying Western providers.

GLM range goes from $0.01 to $1.92 per million output tokens. That's a wide spread, and I appreciate that — I can pick the cheap one for triage and the $1.92 model for final deliverables on the same project.

One note: GLM's English output is good, but in head-to-head tests against DeepSeek V4 Flash, I noticed slightly more awkward phrasing. Not a deal-breaker, but if English is your primary language and you have the choice, DeepSeek still wins on naturalness.

My Actual Decision Framework

Here's the mental flowchart I run every time a new task lands in my inbox:

Is it image or audio input?
→ Qwen3-VL or GLM-4.6V. (Vision routing.)

Is it heavy reasoning — legal, math, multi-step logic?
→ Kimi K2.5. Premium but worth it.

Is it Chinese content?
→ GLM-5 or Kimi K2.5.

Is it a Chinese model at budget?
→ Qwen3-8B or GLM-4-9B at $0.01/M. Practically free.

Is it everything else — code, content, summaries, general Q&A?
→ DeepSeek V4 Flash. Always.

That's it. Four models, five routing rules, roughly 95% of my actual work covered.

Doing the Numbers on a Real Project

Let me run a real example so you can see how this plays out for someone billing hourly.

Hypothetical project: building a content moderation pipeline for a small social media startup. Client budget: $3,500. Time estimate: 20 hours.

Without optimization, using GPT-4o at roughly $10/M output:

  • Pipeline runs 50,000 moderation calls per day, each averaging 150 tokens output
  • Daily output volume: 7.5M tokens × $10/M = $75/day
  • Month one of testing alone burns ~$2,250 of the project budget on API calls

That's two-thirds of the project fee gone before the client sees a working product. I can't take that job profitably.

Switching to DeepSeek V4 Flash at $0.25/M:

  • Same 7.5M tokens × $0.25 = $1.875/day
  • Month one: ~$56

Or using Q

Top comments (0)