Tencent Hy4 preview: 770B Parameters, 49B Active, 1M-Token Context — The Complete Guide (2026)
On August 28, 2026, Tencent open-sourced the biggest model its Hunyuan line has ever produced — and it did something rare for a flagship: it shipped runnable. Hy4 preview is a 770B-parameter MoE with 49B active per token, a native 1M-token context window, Apache 2.0 weights in BF16 and FP8, and day-zero serving support in vLLM and SGLang — a Docker image, a one-command serving recipe, and merged framework support, not just a checkpoint. Tencent’s own blind evaluation (163 experts, 203 tasks) scores it 2.99/4.00 against 2.92 for GLM-5.3 and 2.94 for Kimi K3, and its claimed Terminal-Bench 2.1 of 85.4 would tie GPT-5.6 Sol. The honest caveats sit alongside: every benchmark is vendor-reported, no independent lab has verified anything yet, and Tencent itself flags over-long reasoning and over-verification. This guide covers the architecture (Gated DSA + IndexCache, iHC residuals, built-in MTP speculative decoding), the benchmarks, every price and endpoint, the two-mode reasoning setup that trips people up, and the self-hosting path — plus the wider China open-model context from Why China Is Winning the AI Race.
What Hy4 preview is: Tencent’s open flagship, shipped preview-first
Hy4 preview is the next-generation flagship of Tencent’s Hunyuan (混元) model family — Tencent’s answer to Alibaba’s Qwen, Zhipu’s GLM, and the DeepSeek line. "Preview" is the deliberate part: Tencent has settled into a rhythm of roughly one major model iteration every two months since February, and every release ships as a preview first, collects real-world feedback, and is followed by an official release. Hy4 preview is the preview step for the Hy4 generation — and unlike most previews, it is fully open from minute zero.
What makes the launch worth a guide rather than a headline is the combination you rarely see from a frontier-scale lab: the largest open-weight model Tencent has shipped, Apache 2.0 licensed, with serving support merged into vLLM on the same day. The model also came with a prebuilt Docker image, an SGLang image, and a working Ascend path for Chinese accelerators. Open-weight releases usually take weeks for the serving ecosystem to catch up; this one took hours.
The spec sheet
| Specification | Hy4 preview |
|---|---|
| Developer | Tencent — Hunyuan (混元) team, Shenzhen |
| Released | August 28, 2026 (preview-first release; official Hy4 follows) |
| Model type | Sparse Mixture-of-Experts (MoE) transformer |
| Total parameters | 770B (backbone; excl. MTP layer) |
| Active parameters per token | 49B |
| Layers | 78 — layer 1 dense FFN, layers 2–78 MoE |
| Experts | 256 routed + 1 shared per MoE layer; top-8 routed experts activated per token |
| Attention | Gated DeepSeek Sparse Attention (Gated DSA) with IndexCache — 21 of 78 layers compute their own sparse index, the other 57 reuse one |
| Indexer | 32 heads × 128 dim; top-k of 2,048 tokens selected from the full context |
| Residual pathway | iHC (identity Hyper-Connections) — 4 parallel residual streams |
| Context window | 1,048,576 tokens (1M) — native |
| Vocabulary | 120,832 tokens; 64 attention heads; hidden size 6,144 |
| Speculative decoding | Built-in MTP layer: ~10B total / 0.7B active, draft depth 3 — no separate draft model needed |
| Modalities | Text in / text out per current documentation — no vision or audio claimed for the preview |
| Reasoning | Always-on reasoning by default (high); opt-out via no_think (self-host) or none (TokenHub) |
| API compatibility | OpenAI Chat Completions everywhere; OpenAI Responses + Anthropic Messages via TokenHub |
| License | Apache 2.0 — BF16 and FP8 checkpoints on Hugging Face, ModelScope, GitCode and CNB |
The lineage puts the jump in context — Hy3 to Hy4 preview roughly doubled active capacity and quadrupled the context window:
| Model | Released | What changed |
|---|---|---|
| Hy3 | Aug 2026 | 295B total, 256K context — agent capabilities, global rollout with free WorkBuddy access |
| Hy4 preview | Aug 28, 2026 | 770B / 49B active, 1M context, Apache 2.0 weights, day-zero vLLM + SGLang support |
| Hy4 (official) | Expected soon | Tencent’s preview-first playbook: ship preview, collect real-world feedback, then release — the next batch is already in the pipeline |
Architecture: the interesting bit is why it’s cheap to serve
Try to describe Hy4 preview as "just another big MoE" and you’ll miss the actual story, which is that every design choice exists to keep a 770B model affordable to run and to serve. The pieces matter individually, but together they are a coherent argument about how a Chinese lab can ship frontier-adjacent capability at prices US labs can’t match.
The MoE layout: 256 experts, top-8, one dense layer
The backbone is 78 layers: the first is a standard dense FFN, and the remaining 77 are MoE layers, each holding 256 routed experts plus one shared expert. Every token activates the top-8 routed experts along with the shared one — a roughly 16:1 sparsity ratio. That ratio is the difference between a model that needs a national grid and a model a serious team can actually put into production: you pay for 49B active parameters per token, not 770B.
Gated DeepSeek Sparse Attention with IndexCache
The attention design is where Hy4 preview gets interesting. It uses Gated DeepSeek Sparse Attention (Gated DSA) — the same sparse-attention family DeepSeek introduced — combined with IndexCache, a cross-layer sparse-index reuse scheme Tencent says was "inspired by DeepSeek and GLM." Instead of paying dense attention over the full 1M-token context, an indexer selects a top-k of 2,048 relevant tokens per query, and only 21 of the 78 layers compute their own sparse index while the other 57 reuse it. Think of a library where a card index is compiled once and shared across floors, rather than every floor re-cataloguing the building.
The headline number: with Gated DSA, the per-token attention cost stops scaling with the total context length the way dense attention does — which is what makes a 1M context window something you can actually serve on your own GPUs rather than a marketing slide.
iHC residuals and the built-in MTP layer
Two less-hyped choices round out the design. First, the residual pathway uses iHC (identity Hyper-Connections), giving the model four parallel residual streams instead of one — a technique for improving inter-layer information flow and training stability in very deep models (the README cites the approach as part of why the 78-layer stack trains and scales cleanly). Second, and importantly for serving: the checkpoint embeds a native MTP (multi-token prediction) layer of ~10B total parameters / 0.7B active, with draft depth three. That means speculative decoding is built in — vLLM and SGLang can draft tokens ahead using the model’s own MTP head, with no separate draft model to deploy. For a 770B model, not needing a second, smaller draft model is a genuinely big deal operationally.
Quantization story
Tencent published both BF16 and FP8 checkpoints on day one across Hugging Face, ModelScope, GitCode and CNB — and the official vLLM recipe targets the FP8 build, which is what makes the "one command, eight GPUs" story workable. At FP8 with 49B active parameters, this is a model that fits into serious-but-not-fantastical multi-GPU nodes, unlike the full-BF16 flagship tier from some rivals.
Every Tencent architecture claim above is from the official Hy4-preview GitHub repository and the launch announcement. The 770B/49B figures cover the backbone and exclude the MTP layer. Treat spec claims as vendor-documented (they are) and benchmark claims as vendor-reported (they are too).
Benchmarks: what Tencent claims — and what we still don’t know
Here is the single most important sentence in this whole guide: every benchmark Tencent published for Hy4 preview is self-reported, run on Tencent’s own evaluation setup, and unreproduced by any independent lab. The model has been public only since August 28, 2026. Nothing on the public leaderboards reflects it. Read the numbers below as the ceiling Tencent believes it hit, not as established fact — and re-check before making deployment decisions.
The Hy3 → Hy4 preview jump (Tencent’s table)
| Benchmark | Hy3 | Hy4 preview | Δ |
|---|---|---|---|
| Terminal-Bench 2.1 (terminal agent coding) | 70.8 | 85.4 | +14.6 |
| DeepSWE v1.1 (realistic software engineering) | 28.0 | 64.3 | +36.3 |
| SWE-bench Pro | — | 65.7 | new |
| SWE-bench Multilingual | — | 82.9 | new |
| Toolathlon-Verified (tool calling) | — | 74.1 | new |
| APEX-Agents (pass@1) | — | 37.1 | new |
Tencent calls DeepSWE’s 28.0 → 64.3 and the overall table the largest generation-over-generation gain it has measured. The headline row is Terminal-Bench 2.1 at 85.4 — the claim that puts an open-weight model at parity with the most expensive closed frontier models on a hard agentic-coding test — and it is exactly the claim most in need of independent confirmation.
The blind expert evaluation
Separately from leaderboard-style benchmarks, Tencent ran a blind side-by-side evaluation with 163 internal experts over 203 engineering tasks, scoring output quality from 1 to 4:
| Model | Average score (blind eval) | Head-to-head vs Hy4 preview |
|---|---|---|
| Hy4 preview | 2.99 / 4.00 | 163 experts, 203 engineering tasks |
| GLM-5.3 | 2.92 / 4.00 | Hy4 wins 46.8%, ties 12.8%, loses 40.4% |
| Kimi K3 | 2.94 / 4.00 | Hy4 wins 51.2%, ties 7.9%, loses 40.9% |
Hy4 preview edges both rivals on average score, and the win-rate split is revealing: against GLM-5.3 it wins 46.8% of pairings, ties 12.8%, and loses 40.4% — "ahead on average" hides that it loses two out of every five direct comparisons. That is the honest shape of the model: genuinely in the same class as GLM-5.3 and Kimi K3, not a clean sweep.
Against the closed frontier (Tencent’s chart)
| Benchmark | Hy4 preview | GPT-5.6 Sol | GLM-5.3 / Kimi K3 |
|---|---|---|---|
| SWE-bench Pro | 65.7 | 64.6 | 64.6 |
| Terminal-Bench 2.1 | 85.4 | 85.4 (claimed tie) | — |
| Toolathlon-Verified | 74.1 | below 74.1 | below 74.1 |
| APEX-Agents (pass@1) | 37.1 | — | 37.2 (Kimi K3) |
The shape of the claim: SWE-bench Pro 65.7 vs 64.6 for both GPT-5.6 Sol and GLM-5.3; Terminal-Bench 2.1 tying Sol at 85.4; Toolathlon-Verified 74.1 "surpassing" Sol and Claude Opus 5; APEX-Agents 37.1, a hair behind Kimi K3’s 37.2. Notice what’s absent — no SWE-bench Verified, no HLE, no reasoning-heavy leaderboard publication, and no multimodal rows, consistent with a text-only preview.
Built for productivity — and for improving itself
Tencent positions Hy4 preview as a "built for productivity" model, trained partly on high-quality data co-created with Tencent’s own domain experts in software engineering, gaming, finance and security, and co-designed with its products (CodeBuddy, WorkBuddy, Yuanbao, ima). The concrete claims, per capability area:
- Software engineering — stronger understanding, planning, debugging and validation on long-context development tasks, plus better visual quality and interaction polish for front-end generation.
- Office & finance — deeper understanding of complex working environments, improved financial analysis, and the full data-analysis workflow from raw information to documents, spreadsheets and presentations.
- Game development — a playable prototype from a single natural-language request, working with game engines, refinable through multi-turn interaction.
- Scientific research — improved reasoning on AI R&D, molecular dynamics simulation, condensed-matter physics and fundamental mathematics.
The self-improvement loop: the model helped build itself
Two details in Tencent’s announcement deserve more attention than they got. First, Hy4 preview participated in its own development for the first time — it contributed to the automated optimization of training methods, data strategies, evaluation frameworks, and low-level operators, proposing approaches, running experiments, and feeding code, logs and feedback into the next round. Tencent calls this an "early-stage recursive self-improvement loop," which is remarkable language for a company release. Second, the model autonomously analyzed bottlenecks in its own inference system and ran multiple rounds of operator-fusion and communication optimization, improving end-to-end throughput by 31.8% against baseline with consistent gains across context lengths and concurrency levels. That is not future talk: that is a shipped model claiming to have made its own serving stack 32% faster.
This is the section that made the September 1 AI news roundup awkward for the industry: the same week Tencent proudly described Hy4 preview optimizing its own training and inference, more than 1,100 employees of the leading labs signed "Pacing the Frontier," asking governments to deliberately slow automated AI research. Models that help build the next model are no longer hypothetical — Hy4 preview is on the record as having done it. Where you land on that trade-off is a values question; the engineering fact is that the loop exists and is shipping.
Pricing, API, and the reasoning-mode landmine
The headline answer
$0.834 per million input tokens, $2.501 per million output, $0.042 per million for cache hits (¥6 / ¥18 / ¥0.3 in China) — undercutting GLM-5.3’s $1.40/$4.40 and Kimi K3’s $3/$15 while sitting in the same benchmark class per Tencent’s own eval. On top of that, WorkBuddy and CodeBuddy offered two weeks of free access at launch, and free Hy3 access on both platforms continues until September 30, 2026.
| Token type | Off-peak 50% | Peak 100% |
|---|---|---|
| Input (cache miss) | $0.834 (¥6) | $0.834 (¥6) |
| Output | $2.501 (¥18) | $2.501 (¥18) |
| Input (cache hit) | $0.042 (¥0.3) | $0.042 (¥0.3) |
Two clarifications, because both have burned people already. First, this is promotional-free flat pricing for a preview — Tencent has not announced discounts or off-peak windows for Hy4 (unlike DeepSeek’s tariff model, covered in our DeepSeek V4 guide). Second, preview pricing is explicitly subject to change before the official Hy4 release.
Endpoints
| Route | Base URL | Notes |
|---|---|---|
| Tencent Cloud TokenHub (China) | https://tokenhub.tencentmaas.com/v1 | Model ID hy4-preview; RMB billing (¥6 / ¥18 / ¥0.3 per M tokens) |
| TokenHub (US) | https://tokenhub-us.tencentcloudmaas.com/v1 | USD billing at $0.834 / $2.501 / $0.042 per M tokens |
| OpenRouter | https://openrouter.ai/api/v1 | Model ID tencent/hy4-preview |
| Self-hosted (vLLM/SGLang) | http://127.0.0.1:8000/v1 | Model ID hy4-preview; api_key EMPTY |
The compatibility story is unusually good for a Chinese open model: the API speaks OpenAI Chat Completions everywhere (most existing code just changes base_url and model ID), and TokenHub additionally advertises OpenAI Responses and Anthropic Messages compatibility — meaning Claude-shaped agent tooling can point at Hy4 preview with minimal changes, the same trick Z.ai offers with GLM-5.3.
Your first call
curl https://tokenhub.tencentmaas.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $TENCENT_TOKENHUB_KEY" \
-d '{
"model": "hy4-preview",
"messages": [
{"role": "user", "content": "Explain Mixture-of-Experts in one sentence."}
],
"temperature": 0.9,
"top_p": 1.0
}'Official sampling guidance is temperature 0.9, top_p 1.0. Reasoning output arrives separately from the answer: the chain-of-thought comes back in reasoning_content and the final answer in content. If you’re using the Python OpenAI SDK, reasoning_content isn’t in its type definitions — grab it with getattr(msg, "reasoning_content", None).
Hy4 preview has exactly two reasoning settings — high (default, full chain-of-thought) and a no-thinking mode — and the spelling differs by route. On self-hosted endpoints (vLLM/SGLang) you pass reasoning_effort: "no_think" inside extra_body.chat_template_kwargs; on TokenHub you pass "none" as a top-level value, or thinking: { "type": "disabled" }. Mix them up and you either get an exception (the self-hosted chat template throws on values outside the allowed list — there is no silent fallback) or thinking keeps running and burning tokens. There is no low or medium tier, and ignore any TokenHub doc table listing three tiers — the model-specific table (two values) is the one that applies.
Self-hosting: day-zero vLLM and SGLang support
The self-hosting story is the reason this guide exists in a year full of open-model releases: Hy4 preview launched with a ready-made vLLM container rather than just a checkpoint. The vLLM support (PR #54160) landed in the same window as the release, the official recipe targets vLLM 0.29.0+, and the official image is prebuilt. In practice, serving is one command rather than a weekend of kernel debugging:
docker run --gpus all -p 8000:8000 --ipc=host \
-v ~/.cache/huggingface:/root/.cache/huggingface \
vllm/vllm-openai:hy4-preview \
tencent/Hy4-preview-FP8 \
--tensor-parallel-size 8 \
--speculative-config '{"num_speculative_tokens":3,"method":"mtp"}' \
--attention-backend FLASHMLA_SPARSE \
--tool-call-parser hy_v4 \
--reasoning-parser hy_v4 \
--enable-auto-tool-choice \
--served-model-name hy4-previewEvery flag maps to something real in the model:
--attention-backend FLASHMLA_SPARSE— required, not optional. Gated DSA does not run correctly on the default dense backends; this flag is the official configuration.--speculative-config {"num_speculative_tokens":3,"method":"mtp"}— turns on the model’s built-in MTP layer for speculative decoding, three draft tokens ahead, with no separate draft model to deploy.--tool-call-parser hy_v4and--reasoning-parser hy_v4— tell the server how Hy4 preview emits tool calls and chain-of-thought, and--enable-auto-tool-choicelets the model decide when to call tools.
Day-zero support isn’t vLLM-only. SGLang shipped a prebuilt multi-architecture image (lmsysorg/sglang:hy4-preview) with NEXTN-style speculative decoding the same day, and the Ascend ecosystem landed 0-day support through vLLM-Ascend using W8A8-quantized weights across 16 Atlas 800I A3 NPUs — the domestic-silicon path matters given the export-control backdrop covered in Why China Is Winning the AI Race. Third-party tools with support on day one include Cline, OpenCode Go, and Vercel AI Gateway.
The FP8 build is the practical self-host tier: with 49B active parameters and eight-way tensor parallelism, it fits a serious multi-GPU node rather than a datacenter. The BF16 checkpoint is also published for maximum fidelity if you have the memory. Note the MTP layer adds ~10B parameters (0.7B active) on top of the 770B backbone — the published 770B/49B figures exclude it, and your memory math should too.
How Hy4 preview compares
vs GLM-5.3 — the direct rival, and what "ahead" actually means
These are the two most comparable open flagships shipping in the same August week, and the head-to-head is genuinely close. Tencent’s blind eval puts Hy4 preview at 2.99 vs GLM-5.3’s 2.92, with 46.8% wins but a 40.4% loss rate — "ahead on average," not dominant. On price, Hy4 preview is cheaper per token ($0.834/$2.501 vs $1.40/$4.40). The structural differences matter more than the averages: Hy4 preview’s Apache 2.0 weights are downloadable today, where GLM-5.3’s flagship weights remain withheld for safety evaluation (see our GLM-5.3 guide) — and Hy4 preview ships with day-zero serving tooling that Z.ai’s flagship still can’t offer because you can’t download it.
vs Kimi K3 — the closest margin on agentic coding
Kimi K3 (2.8T total) remains the bigger and more expensive model ($3/$15 vs $0.834/$2.501). On Tencent’s numbers they trade blows at the margin: APEX-Agents 37.1 vs K3’s 37.2, and the blind eval 2.99 vs 2.94 with Hy4 winning 51.2% of pairings. K3’s advantages are native vision and a longer head start; Hy4 preview’s are price, open weights on day one, and the serving story. If Tencent’s chart survives independent testing, this is the cheapest way into the frontier agentic-coding tier that exists today.
vs DeepSeek V4 — the efficiency war continues
DeepSeek’s V4 line is the other end of the same trend: MIT-licensed open weights, sparse attention, deliberately cheap inference. But note the architectural borrowings are directional: Hy4 preview’s attention is explicitly "Gated DeepSeek Sparse Attention," and its README credits DeepSeek and GLM as inspirations — the Chinese open-model ecosystem is now openly iterating on each other’s ideas at a pace no single lab can match, with all the strategic implications covered in our DeepSeek V4 guide.
vs the closed frontier
On Tencent’s chart, Hy4 preview’s SWE-bench Pro (65.7) and Terminal-Bench 2.1 (85.4) sit at parity with GPT-5.6 Sol (64.6 / 85.4), and Toolathlon-Verified 74.1 is claimed above Sol and Claude Opus 5. The measured-from-scratch verdict is still out: no independent lab has run these, the model has no published results on reasoning-heavy or multimodal leaderboards, and the same August week produced multiple reminders that vendor tables are ceilings, not facts. What is already true: at this price, with these weights, the open tier is no longer a "good enough" story — it is a cost-structure story.
Limitations — the honest list
| Limitation | Detail |
|---|---|
| Preview-stage model | Tencent explicitly calls Hy4 preview an early iteration with remaining pre-training and post-training headroom — behaviour and pricing can change before the official Hy4 release |
| All benchmarks are vendor-reported | Every number Tencent published is self-reported and unreproduced; no independent lab has scored the model and nothing on public leaderboards reflects it yet |
| Over-long reasoning & over-verification | Tencent itself names two known behaviours: the model reasons longer than needed on complex work, and it tends to over-verify its own results — budget tokens accordingly |
| No published safety evaluation | No model card, refusal testing, or safety framework has been published for the preview — run it in sandboxes with approval gates like any model without a safety eval |
| Text-only at preview | Vision and audio input are not documented for Hy4 preview, where Qwen3.8-Flash and GLM-5.3-Flash already ship natively multimodal |
| Reasoning token billing unclear | Whether reasoning_content counts toward output billing, and how max_tokens interacts with thinking tokens, is not documented — verify with a test call |
| China-hosted option | The mainland TokenHub route routes through Chinese infrastructure — material for data residency and compliance; self-hosting is the usual mitigation and it is genuinely available here |
| Fast-moving details | Endpoints, parameter names and prices were verified August 31, 2026 — the preview is expected to change quickly |
Hy4 preview is one entry in a pattern that matters more than any single model: Tencent, Zhipu, Alibaba, DeepSeek and Moonshot shipping frontier-adjacent open models in the same weeks at prices US labs can’t match — open weights as strategy, structural cost efficiency, domestic silicon. That story got its own article: Why China Is Winning the AI Race (2026).
Frequently asked questions
Hy4 preview is the next-generation flagship large language model in Tencent’s Hunyuan (混元) line, released and open-sourced on August 28, 2026. It is a Mixture-of-Experts model with 770B total parameters, 49B activated per token, a 1M-token context window, and Apache 2.0 licensing — explicitly positioned by Tencent for real-world productivity tasks in coding, office work, game development, and scientific research.
Yes — and unusually completely so. Tencent published Apache 2.0 weights in both BF16 and FP8 on Hugging Face, ModelScope, GitCode and CNB on day one, together with a ready-made vLLM Docker image, merged vLLM support (PR #54160), an SGLang image, and a vLLM-Ascend path for Chinese AI accelerators.
$0.834 per million input tokens, $2.501 per million output, and $0.042 per million tokens for cache hits (¥6 / ¥18 / ¥0.3 in China) through Tencent Cloud TokenHub — cheaper per token than both GLM-5.3 ($1.40/$4.40) and Kimi K3 ($3/$15). WorkBuddy and CodeBuddy also gave two weeks of free access at launch, with free Hy3 access extended to September 30, 2026.
In Tencent’s own blind evaluation, 163 internal experts scored 203 engineering tasks at 2.99/4.00 for Hy4 preview versus 2.92 for GLM-5.3 and 2.94 for Kimi K3, and Tencent’s chart puts Hy4 at 65.7% on SWE-bench Pro against 64.6% for both GLM-5.3 and GPT-5.6 Sol. Every one of those figures is vendor-supplied and unreproduced by any independent lab, so treat them as a ceiling rather than established fact.
A 78-layer MoE with 256 routed experts plus one shared expert per layer (top-8 activated), Gated DeepSeek Sparse Attention with an IndexCache that computes a sparse index on only 21 of 78 layers and reuses it on the other 57, iHC (identity Hyper-Connections) giving the model four parallel residual streams, and a built-in 10B-parameter MTP layer (0.7B active) for speculative decoding.
Yes — that is the point of the day-zero serving support. The official recipe is one command on vLLM 0.29.0+: a prebuilt FP8 image, eight-way tensor parallelism, the required FLASHMLA_SPARSE attention backend, built-in MTP speculative decoding, and hy_v4 tool-call/reasoning parsers. SGLang and vLLM-Ascend (W8A8 on 16 Atlas 800I A3 NPUs) also support it from day one.
The model is OpenAI Chat Completions-compatible. Three paths: Tencent Cloud TokenHub in China (base URL https://tokenhub.tencentmaas.com/v1, model ID hy4-preview), TokenHub’s US endpoint (https://tokenhub-us.tencentcloudmaas.com/v1), or OpenRouter with the model ID tencent/hy4-preview. TokenHub also advertises OpenAI Responses and Anthropic Messages compatibility.
There are only two reasoning settings — high (the default) and a no-thinking mode — and the spelling differs by route: self-hosted endpoints use reasoning_effort: "no_think" passed via extra_body.chat_template_kwargs, while TokenHub uses "none" (or thinking.type: "disabled"). There is no low or medium tier, and the self-hosted chat template throws an exception on invalid values.
Sources & further reading
Official Tencent
Coverage & independent analysis
Related reading
- GLM-5.3: The Same Base Model, Six-Times-the-Agent, and Weights Z.ai Held Back — Kill The AI
- GLM-5.3-Flash: 320B Params, 18B Active, 10× Cheaper — and It Was "Ox Alpha" All Along — Kill The AI
- DeepSeek V4 Models, Harness, and API Discount Windows: The Complete Guide — Kill The AI
- Why China Is Winning the AI Race: Open Weights, Cheap Tokens, and the Silicon Hedge — Kill The AI
- Top 10 AI News Today (August 30, 2026) — Tencent Hy4 preview coverage — Kill The AI
Last updated: September 1, 2026. Release date, architecture, pricing, endpoints, and benchmark figures verified against the official Tencent announcement, the Hy4-preview GitHub repository, and the sources above as of September 1, 2026. All benchmark figures are vendor-reported and unreproduced by any independent lab; preview pricing, endpoints, and parameter names are explicitly subject to change before the official Hy4 release — re-check the official repository before making deployment decisions.