For summarization at any real volume, pick a fast instruct model: Qwen3-235B-A22B and DeepSeek V4-Flash produced correct sub-20-word summaries in about 3 to 6 seconds for a fraction of a cent, while reasoning model GLM-5 needed 117.3 seconds.
Summarization is the highest-volume LLM job most teams run: support ticket digests, meeting recaps, document abstracts, news briefs. Because the task is simple and the output is short, the model you choose barely moves the accuracy needle but moves your latency and bill dramatically. So the honest question is not "which Chinese model summarizes best" but "which one gives you a correct short summary fastest and cheapest at scale."
We tested that directly. On our benchmark all six models we called returned a valid summary within the 20-word limit on the same prompt, so correctness was at parity. The real spread was speed and cost, and it was wide.
The summarization prompt asked each model to compress a short factory-profile passage into a summary of 20 words or fewer. The deterministic check counted words and confirmed the key facts survived. Every model passed. Here are this task's measured numbers, pulled from the run artifact.
| Model | Summary <=20 words? | Latency (s) | Billed cost (USD) | Word count |
|---|---|---|---|---|
| Qwen3-235B-A22B | Yes | 3.18 | $0.0000252 | 17 |
| DeepSeek V4-Flash | Yes | 5.64 | $0.0000372 | 18 |
| Kimi K2 | Yes | 2.85 | $0.0001112 | 19 |
| MiniMax-M2.5 | Yes | 13.83 | $0.0006368 | 18 |
| GLM-5 | Yes | 117.3 | $0.0021482 | 14 |
| GPT-4o (Western baseline) | Yes | 1.53 | $0.0004925 | 20 |
Among the Chinese options, Qwen3-235B-A22B was the cheapest and DeepSeek V4-Flash was close behind, while Kimi K2 was the fastest instruct model on this single call. GLM-5 was correct and actually returned the tightest 14-word summary, but it spent about two minutes doing it. GPT-4o is included only as a neutral Western reference point.
We ran six models against one identical summarization prompt at temperature 0, max_tokens 6000, a single run on 2026-07-10. All six passed: each returned a summary of 20 words or fewer that preserved the source facts. Qwen3-235B-A22B answered in 3.18 seconds for $0.0000252 (34 completion tokens); DeepSeek V4-Flash took 5.64 seconds for $0.0000372; Kimi K2 was quickest of the Chinese set at 2.85 seconds for $0.0001112. GLM-5, a reasoning model, also passed with a clean 14-word summary but took 117.3 seconds and billed $0.0021482, spending 877 completion tokens plus a 3,109-token reasoning trace on a three-sentence summary.
Two disclosures matter. All six models were routed through OpenRouter this run because api.deepseek.com was unreachable from our environment, so these DeepSeek figures reflect a third-party route, not the native endpoint, and we have flagged the record for native re-verification. And this is a single-run, one-prompt, temperature-0 snapshot: a pass means the model followed this instruction on this prompt, not proof it always will.
A reasoning model is a category of LLM that spends extra hidden "thinking" tokens deliberating before it writes its final answer. That design pays off on hard multi-step problems, but summarization is neither hard nor multi-step, so the deliberation is pure overhead here. On this task GLM-5 emitted a 3,109-token reasoning trace before a 14-word answer, which is why it landed at 117.3 seconds against Qwen's 3.18. GLM-5 is built by Zhipu AI and it was correct; it is simply a poor fit for high-volume simple summarization. Reserve reasoning models for the workloads that actually need chained inference.
For context on the trade-off, note that Qwen3-235B-A22B is developed by Alibaba Cloud as an instruct-tuned model, while Kimi K2 is made by Moonshot AI. Instruct models answer immediately without a reasoning phase, which is exactly what a short-summary job wants.
According to Alibaba Cloud Model Studio, the Qwen3 series is offered as instruction-tuned models for direct chat and generation, which matches the fast, low-token behavior we measured. According to Zhipu AI (Z.ai), the GLM reasoning line is positioned for deep multi-step problem solving, consistent with the reasoning overhead we saw on this trivial task.
At production scale the gap compounds. Summarizing one million short documents on our per-call numbers costs roughly $25 on Qwen3-235B-A22B versus roughly $2,148 on GLM-5, and the wall-clock difference between a 3-second and a 117-second call decides whether a batch job finishes in an hour or a day. According to OpenAI's pricing, GPT-4o sits well above the cheapest Chinese instruct models on cost, which our $0.0004925 baseline call confirms.
If you are also weighing native DeepSeek economics, our prior first-hand testing of the native api.deepseek.com endpoint recorded roughly $0.14 per million input and $0.28 per million output tokens at about 0.7-second latency; that native rate is cited here as prior data and should be re-verified once the endpoint is reachable again. See our DeepSeek API pricing breakdown for the full native cost picture.
Because correctness was tied, choose on throughput and budget. For high-volume batch summarization, Qwen3-235B-A22B and DeepSeek V4-Flash give you the lowest cost per call with fast instruct latency. For the tightest single-call latency in the Chinese set, Kimi K2 led at 2.85 seconds. MiniMax-M2.5 sat in the middle at 13.83 seconds. Skip reasoning models such as GLM-5 for this job unless you are summarizing genuinely complex, multi-document material where the reasoning phase earns its cost. For the full cross-use-case picture, see our hub on the best Chinese LLM by use case.
Which Chinese LLM is best for high-volume summarization? On our 2026-07-10 test, Qwen3-235B-A22B was cheapest at $0.0000252 per call and DeepSeek V4-Flash was close behind at $0.0000372, both with fast instruct latency. All models passed the under-20-word check, so pick on cost and speed. This was a single-run OpenRouter-routed snapshot, so validate against your own volume.
Why is a reasoning model like GLM-5 so slow at summarization? Reasoning models spend hidden thinking tokens before answering. On our summarization prompt GLM-5 emitted a 3,109-token reasoning trace before a 14-word summary, pushing latency to 117.3 seconds versus Qwen's 3.18. It was correct, but that deliberation is wasted effort on a task that does not need multi-step inference.
Can these models handle long-document summarization? Our benchmark used a short passage, so it does not measure long-context summarization. For long documents, check each provider's context-window limits and per-token input pricing rather than our per-call figures, and expect latency and cost to scale with input length. Treat our numbers as a floor for short-input jobs.
Was any model more accurate than the others? No. All six models, including the GPT-4o baseline, passed the summarization check with a valid sub-20-word summary that preserved the source facts. Correctness was at parity on this prompt, so latency and cost are the honest differentiators, not quality.
Were these tested on native provider endpoints? No. All six were routed through OpenRouter this run because api.deepseek.com was unreachable, and the record is flagged for native re-verification. According to DeepSeek API docs, native pricing and latency differ from third-party routes, so treat these as routed figures.
This page is one entry in our best Chinese LLM by use case cluster, where each use case is backed by the same first-hand benchmark.
By Kevin Fan, Customer Success Manager.