For text classification, Qwen3-235B-A22B is our pick: in our 2026-07-10 benchmark it returned the exact sentiment label in 0.79 seconds at the lowest cost, and since all six models we tested were correct, speed and price decide it. Classification is the one task where the cheap and fast models win outright, because the "quality" gap that matters elsewhere simply did not appear here.
Text classification is a natural-language task that assigns a predefined label (such as POSITIVE, NEGATIVE, or a category name) to a span of text, and it is usually the highest-volume job in a production pipeline. You may run millions of these calls a month, so a fraction of a cent per call and a second of latency compound into your entire bill and your entire throughput ceiling. That makes classification a cost-and-latency problem, not an intelligence problem, once a model can follow a simple label instruction.
We gave all six models one identical zero-temperature prompt: classify a short product review and reply with a single sentiment label, nothing else. Every model returned the exact one-word label NEGATIVE and passed the deterministic check. The separation was entirely in latency and billed cost.
First-hand evidence (we ran this on 2026-07-10). On the classification task, all six models returned the exact one-word label
NEGATIVEand passed 6/6. Qwen3-235B-A22B was fastest at 0.79 seconds and cheapest at $0.0000124 for the call (47 prompt tokens, 3 completion tokens). DeepSeek V4-Flash took 1.55s at $0.0000173, GPT-4o 1.63s at $0.000135, Kimi K2 3.07s at $0.0000348, MiniMax-M2.5 4.19s at $0.0001036, and GLM-5 8.83s at $0.0008632. All models were routed via OpenRouter this run because api.deepseek.com was unreachable from our environment, so we flag this for native re-verification.
This is a single-run, one-prompt-per-task, temperature-0 snapshot. A pass means the model followed this instruction on this prompt, not proof it will label every input perfectly forever. Treat the numbers as a directional read on a clean, well-specified classification call, which is exactly the shape of most production classification work.
| Model | Exact one-word label? | Latency | Billed cost (this call) |
|---|---|---|---|
| Qwen3-235B-A22B | Yes (NEGATIVE) | 0.79s | $0.0000124 |
| DeepSeek V4-Flash | Yes (NEGATIVE) | 1.55s | $0.0000173 |
| GPT-4o (baseline) | Yes (NEGATIVE) | 1.63s | $0.000135 |
| Kimi K2 | Yes (NEGATIVE) | 3.07s | $0.0000348 |
| MiniMax-M2.5 | Yes (NEGATIVE) | 4.19s | $0.0001036 |
| GLM-5 | Yes (NEGATIVE) | 8.83s | $0.0008632 |
Note the two ends of the table. Qwen3-235B and DeepSeek V4-Flash are the fast and cheap pair. GLM-5 is a reasoning model, so it spent roughly a thousand internal reasoning tokens deciding on a single word; it was correct, but it took about eleven times longer than Qwen and cost about seventy times more on this one call. That is a fit question, not a quality knock: reasoning models earn their overhead on hard multi-step problems, not on high-volume single-label sorting.
On a task with an unambiguous rubric, extra model "thinking" buys you nothing you can measure. All six were correct, so the honest differentiator is what you actually pay and how long you wait. Qwen3-235B-A22B is a mixture-of-experts model developed by Alibaba Cloud, and it topped both axes here. DeepSeek V4-Flash is a low-cost general model built by DeepSeek, and it landed a close second on price and speed.
According to Alibaba Cloud Model Studio, Qwen models are offered through a pay-as-you-go API with per-million-token pricing, which is the billing shape our per-call figures are drawn from. That low headline rate is what put Qwen3-235B at the bottom of our cost column and kept the winning call under two-hundredths of a cent.
DeepSeek's near-tie on price has the same root in its published rate card. According to DeepSeek API docs, DeepSeek publishes separate input and output token rates, and its prior native rate we measured earlier ($0.14 input / $0.28 output per million tokens, around 0.7s) is why its OpenRouter-routed result here should be re-verified against the native endpoint.
The Western baseline shows the same gap from the other direction. According to OpenAI, GPT-4o carries materially higher token pricing than the cheapest Chinese options, which our table confirms: GPT-4o cost about eleven times what Qwen did for the identical correct label.
Kimi K2 is a large model made by Moonshot AI, and MiniMax-M2.5 is a model built by MiniMax; both passed cleanly but sat in the middle of the latency band on this call, so they are reasonable fits if you already run them for other tasks and want one classification path.
For a high-volume classification workload, multiply the per-call cost by your monthly volume. At the measured per-call figures, one million short classification calls would cost about $12.40 on Qwen3-235B and about $17.30 on DeepSeek V4-Flash, versus about $135 on GPT-4o and about $863 on GLM-5. Those are extrapolations from a single measured call, not a billed monthly invoice, and your real prompts will be longer, but the ranking is stable: the fast, non-reasoning Chinese models are one to two orders of magnitude cheaper for this job. Confirm current per-token rates on each vendor's own pricing page before you commit, since promo rates and tiers change.
Pick Qwen3-235B-A22B for text classification when you want the fastest, cheapest correct label, and keep DeepSeek V4-Flash as a near-tied backup, especially once you re-verify it on its native endpoint. Reserve GLM-5 for genuinely hard reasoning work, not label sorting. For the full task-by-task comparison and the other use-case verdicts, see our hub on the best Chinese LLM API by use case, and for pricing detail check the Qwen API pricing breakdown.
Which Chinese LLM is best for text classification? On our 2026-07-10 benchmark, Qwen3-235B-A22B was best for text classification: it returned the exact one-word label fastest (0.79s) and cheapest ($0.0000124 for the call). Because all six models were correct, speed and cost are the deciding factors, and Qwen led both.
How much does batch classification cost at scale? At the per-call cost we measured, one million short classification calls run roughly $12.40 on Qwen3-235B and roughly $17.30 on DeepSeek V4-Flash, versus about $135 on GPT-4o. These are extrapolations from a single measured call, so verify current token rates on each vendor's pricing page and account for longer real-world prompts.
Do these models reliably follow a "reply with one word only" instruction?
In our single test prompt, all six models returned exactly NEGATIVE with no extra text, so all passed the exact-label check. That is one prompt at temperature 0, not a guarantee across every input; in production you should still parse defensively and validate the output against your label set.
Is GLM-5 a bad choice for classification? No. GLM-5 was correct on every task, including this one. It is a reasoning model, so it spent extra internal tokens and ran about eleven times slower and seventy times pricier than Qwen on this single-label call. That overhead pays off on hard multi-step problems, not on high-volume simple labeling.
Why were all models routed through OpenRouter, and does it matter? On this run, api.deepseek.com was unreachable from our environment, so every model was routed via OpenRouter for a consistent comparison. Routing can add latency versus a native endpoint, so we flag DeepSeek's result for native re-verification; our prior native DeepSeek measurement was around 0.7 seconds.
This micro is part of our best Chinese LLM API by use case cluster, where each use case is backed by the same first-hand benchmark.
By Kevin Fan, Customer Success Manager.