Tencent Hy4 review: is the 770B open-weight model worth it?

Alicia Kirana Utomo
Written by

Alicia Kirana Utomo

Katelin Teen
Reviewed by

Katelin Teen

Last edited August 30, 2026

Expert Verified
Illustrated hero banner for a review of Tencent Hy4, a 770B open-weight AI model

What Tencent actually shipped

I build the AI agents that sit on top of models like this for a living, so a new open-weight flagship is the part of my week I actually look forward to. I've spent the last few years watching what separates a model that demos well from one that survives a real production queue, and Hy4 is a good test of that gap.

Here's the short version of what landed. Tencent's Hunyuan team released and open-sourced Hy4 preview on August 28, 2026, positioning it as "built for real-world productivity tasks... across coding, office work, and scientific research." It's the successor to the Hy3 line from July, and Tencent is shipping it "preview first, official release later," the same cadence as before.

The Tencent Hy4 preview model card on Hugging Face, where the open weights and specs live

The headline specs, straight from the model card:

  • 770B total parameters, 49B active per token (a Mixture-of-Experts design).
  • 78 layers, with 256 routed experts plus 1 shared expert; every token fires the top-8 routed experts.
  • 1M-token context window.
  • Apache 2.0 license, with a BF16 model and an official FP8 quantized build shipped side by side.

One detail I found interesting: Tencent says Hy4 participated in its own development, proposing and running experiments on training methods and low-level operators, and it autonomously optimized its own inference stack for a 31.8% throughput gain. They call it "an early-stage recursive self-improvement loop." That's marketing framing on top of a real result, but it's the kind of claim worth filing away.

How the 770B / 49B math actually works

If you're new to Mixture-of-Experts, the two big numbers look contradictory: how is a 770B model only "49B" of anything? The answer is that MoE splits the network into many expert sub-networks and, for each token, a router picks a small handful to actually run. So the compute per token behaves like a ~49B model, which is what keeps Hy4 fast enough to serve.

The trap is assuming that smaller active count means smaller hardware. It doesn't. Every one of those 770B weights has to be resident in GPU memory, because the router might pick any expert for the next token. MoE buys you cheaper math, not a cheaper machine.

Diagram showing that Tencent Hy4 activates only 49B of its 770B parameters per token, but all 770B must still sit in GPU memory
Diagram showing that Tencent Hy4 activates only 49B of its 770B parameters per token, but all 770B must still sit in GPU memory

Under the hood there's more engineering than the spec sheet lets on: attention uses Gated DeepSeek Sparse Attention with an IndexCache for reusing sparse indices across layers, and there's a native multi-token-prediction layer bolted on for speculative decoding. If you've followed DeepSeek and GLM's architecture papers, a lot of this will feel familiar, which is itself a sign of how fast the open-weight frontier is converging on the same tricks.

The benchmarks, read honestly

Hy4 benchmarks well. On the verified scores Hugging Face surfaces, it hits 92.3 on GPQA Diamond, 82.9% resolved on SWE-bench Multilingual, 65.7 on SWE-bench Pro, and 64.3 on Deep SWE. For an open-weight model, those are strong coding-and-reasoning numbers, and the community noticed. One commenter on the full-benchmark thread summed up the mood:

Reddit

For a 770B parameters model, it's impressive.

The comparison Tencent leads with is an internal blind evaluation: 163 experts rated outputs on 203 engineering tasks, scored out of 4.00. Hy4 came out at 2.99, ahead of Kimi K3 (2.94) and GLM-5.3 (2.92). That's a real result, but it's Tencent's own test, and a 0.05-point gap on a 4-point scale is a near-tie, not a knockout.

Their own public chart tells the fuller story, and it's worth actually looking at rather than taking the summary on faith. Against Claude Opus 5 and GPT-5.6 Sol, Hy4 (dark blue) is usually behind; against Kimi K3 and GLM-5.3 it trades blows benchmark by benchmark.

Tencent's official Hy4 preview benchmark chart comparing it against Hy3, Qwen 3.8 Max, DeepSeek V4 Pro, GPT-5.6 Sol, GLM-5.3, Kimi K3, and Claude Opus 5, as taken from Tencent
Tencent's official Hy4 preview benchmark chart comparing it against Hy3, Qwen 3.8 Max, DeepSeek V4 Pro, GPT-5.6 Sol, GLM-5.3, Kimi K3, and Claude Opus 5, as taken from Tencent

The sharpest reader in the r/LocalLLaMA thread did the counting the marketing didn't:

Reddit

I don't think their own chart backs the beats glm and kimi line. Against kimi k3 it's behind on 7 of the 12 benchmarks... The beats claim comes from the internal blind test where wins only beat losses 47 to 40 against glm.

Independently, the official Arena account reported Hy4 landing ~#5 in Code Arena's WebDev leaderboard at 1,633 points, roughly #3 among open models, though it flagged this as an early AutoEval placement (a reward model voting in place of live human votes), not a settled rank. And it isn't on the Artificial Analysis index at all yet, so there's no independent intelligence score to quote. My read: this is a strong top-tier open model, not the new #1, and the "beats everyone" framing is the one part I'd discount.

One more thing Tencent is upfront about, which I respect: this preview spends longer than necessary reasoning and over-verifies its own work. They're shipping early on purpose, the same way Hy3 preview did before its final release reportedly jumped 50-100%.

Can you actually run it?

This is where the "open-weight" label gets complicated, and it's the single biggest thing to understand before you get excited. Open weights and an Apache 2.0 license mean you're allowed to run Hy4 anywhere. The hardware is what decides whether you can.

Ladder showing the hardware needed to run Tencent Hy4: an 8x H100 node can't fit it, the MXFP8 build needs an 8x B300 node, and full BF16 needs 16x B200 or 8x B300
Ladder showing the hardware needed to run Tencent Hy4: an 8x H100 node can't fit it, the MXFP8 build needs an 8x B300 node, and full BF16 needs 16x B200 or 8x B300

The vLLM recipe is blunt about it. Full BF16 weights are about 1,848 GB. Even the MXFP8 quantized weights are ~924 GB. The recipe's own floor: "16xB200 or 8xB300 minimum for weights + KV cache." A single 8x H100 node (640 GB) can't hold it. This is a data-center model, full stop.

The r/LocalLLaMA crowd, who run big models at home as a hobby, greeted it with equal parts admiration and resignation:

Reddit

The amount of people who can drop $5-10k to run these locally is vanishingly small.

The practical quant math they worked out is useful if you're tempted: a Q4 GGUF lands around 450 GB, so 512 GB is the realistic minimum, and a 256 GB machine only fits the 1-2 bit quants. As one detailed breakdown put it, "if you have 256GB, you'll probably be much better off with GLM-5.3-Flash Q4." That's the recurring verdict: for local use, a smaller, well-post-trained model is the smarter pick, and Z.AI's Flash models keep getting named as the ones to reach for.

So realistically, "using" Hy4 means the API or one of Tencent's apps, not your own box.

What Tencent Hy4 costs

On the API, Hy4 preview is priced at $0.834 per million input tokens and $2.501 per million output, with cached input at $0.042 (official announcement). Among the flagship open models it compares itself to, that's the cheap option.

Bar chart comparing output price per million tokens across open-weight models: DeepSeek V4 Flash $0.66, Hy4 preview $2.50, GLM-5.3 $4.40, Qwen 3.8 Max $6.00, Kimi K3 $15.00
Bar chart comparing output price per million tokens across open-weight models: DeepSeek V4 Flash $0.66, Hy4 preview $2.50, GLM-5.3 $4.40, Qwen 3.8 Max $6.00, Kimi K3 $15.00

Here's the fuller picture against its rivals, all per million tokens:

ModelTotal / active paramsContextInputOutputCache-hit in
Hy4 preview (Tencent)770B / 49B1M$0.834$2.501$0.042
DeepSeek V4 Flash284B / 13B1M$0.22 / $0.44$0.66 / $1.32$0.007
DeepSeek V4 Pro49B-class active1M$0.66 / $1.32$1.98 / $3.96$0.022
Qwen 3.8 Max2.4T / 95B1M$2.00$6.00$0.25
Kimi K32.8T / 104B1M$3.00$15.00$0.30
GLM-5.3not disclosedn/a$1.40$4.40$0.26

Two honest caveats sit on top of that. First, Hy4 is about 5-6x more expensive than Hy3, so if you're an existing Hy3 user this is a real cost jump, not a discount. Second, DeepSeek V4 Flash is still dramatically cheaper on both meters, and for a lot of agentic work "cheap and good enough" wins. One developer ran a real test and said so plainly:

Reddit

even mimo 2.5 was same good and on 1/20 of the costs... the model is interesting if the price is lower but not for 2.5 USD per million output.

If you want to try it without paying, Hy4 is free for two weeks on WorkBuddy and CodeBuddy, and it's listed on OpenRouter (with a zero-retention data policy, which is a nice touch over some first-party Chinese APIs).

So, who is Tencent Hy4 actually for?

After a few days with it and the community's testing, here's where I land.

Reach for Hy4 if you're building agentic coding, office-automation, or research tooling, you specifically want open weights and a permissive Apache 2.0 license, and you have the hardware (or the API budget) to run a frontier-scale model. The coding and math scores are real, the context window is huge, and the price undercuts the other flagship open models.

Skip it if you're running models locally on a workstation (a well-post-trained Flash-tier model will serve you better for a fraction of the memory), if raw cost-per-token is your main lever (DeepSeek V4 Flash is far cheaper), or if you just want a finished job done and don't care which model does it.

That last case is the one I see most often, and it's worth being honest about: most people asking "should I use Hy4" don't actually want a model. They want a support queue cleared, or a blog drafted, or a research task finished. A raw 770B model is a brilliant engine with no car around it, you still have to build the retrieval, the guardrails, the integrations, the evals, and the fallback logic before it does anything useful in production. That's the gap between an impressive benchmark and a thing that survives real traffic, and it's the part I spend all day on.

Try eesel: hire the teammate, skip the model plumbing

The way I think about it: models like Hy4 are infrastructure. eesel AI is the employee. Instead of picking a model and wiring up everything around it, you hire a ready-to-work AI teammate for a specific job, and it arrives already knowing how to do it.

How the eesel AI blog writer works: describe your topic, get keywords, and draft a full post in one click
How the eesel AI blog writer works: describe your topic, get keywords, and draft a full post in one click

Right now the roster is two teammates. The AI helpdesk teammate joins your existing queue in Zendesk, Freshdesk, Gorgias, or a shared inbox, trains on your past tickets and help center, and drafts or sends replies, and crucially, you can simulate it against your historical tickets before it ever answers a customer, so you know how it'll behave instead of flipping a switch and hoping. The AI blog writer does the research, writing, and SEO for a long-form post in one run. Both run on frontier models under the hood, so you get the capability of something like Hy4 without provisioning a single GPU. You can start free, no credit card and no sales call.

Frequently Asked Questions

What is Tencent Hy4?
Tencent Hy4 preview is an open-weight large language model from Tencent's Hunyuan team, released on August 28, 2026. It's a Mixture-of-Experts model with 770B total parameters, 49B active per token, and a context window over 1M tokens, aimed at coding, office work, and research. The weights are on Hugging Face under Apache 2.0.
How much does Tencent Hy4 cost to use through the API?
Tencent Hy4 pricing on the API is $0.834 per million input tokens, $2.501 per million output tokens, and $0.042 per million cached input tokens. That undercuts most flagship open models but is roughly 5-6x more expensive than the outgoing Hy3. If you'd rather skip the model plumbing entirely, an AI teammate runs on models like this for you.
Can I run Tencent Hy4 locally?
Only if you have a data-center GPU node. The full BF16 weights are about 1,848 GB and the recipe calls for 16x B200 or 8x B300 just for weights plus KV cache; even the MXFP8 build (~924 GB) needs a full 8-GPU node. A Q4 GGUF (~450 GB) fits a 512 GB machine, which is why the r/LocalLLaMA consensus is that almost nobody can run it at home.
Is Tencent Hy4 better than GLM-5.3 or Kimi K3?
In Tencent's own blind evaluation it scored 2.99/4.00 versus 2.94 for Kimi K3 and 2.92 for GLM-5.3, a near-tie. On the published benchmark chart it trades wins and losses with both, so "on par" is the fairer read than "beats." It is cheaper than both on the API.
Where can I try Tencent Hy4 for free?
Hy4 preview is free for two weeks on Tencent's WorkBuddy and CodeBuddy apps from launch, and reachable via OpenRouter and Tencent Cloud TokenHub. For a support or content workflow, you can also start free with an eesel AI teammate that already runs on frontier models, no GPU required.

Share this article

Alicia Kirana Utomo

Article by

Alicia Kirana Utomo

Kira is a writer at eesel AI with a Computer Science background and over a year of hands-on experience evaluating AI-powered customer service tools. She focuses on breaking down how helpdesk platforms and AI agents actually work so that support teams can make better buying decisions.

Related Posts

All posts →
Illustration of a Kimi K3 model tile beside a row of pricing tier cards, in Kimi blue
AI

Kimi K3 pricing: what Moonshot's frontier model really costs

Kimi K3 pricing, decoded: the $3/$15 API rate, the $19–$199 app tiers, how the 90% cache discount changes the math, and how it compares to Claude, GPT and DeepSeek.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieJul 17, 2026
Illustration for a roundup of the best alternatives to Google Gemini 3.6 Flash in 2026
AI

The 6 best Gemini 3.6 Flash alternatives in 2026

The best Gemini 3.6 Flash alternatives in 2026, with real prices and benchmarks: GPT-5.6 Luna, Claude Sonnet 5, Grok 4.5, Flash-Lite, and more.

Alicia Kirana UtomoAlicia Kirana UtomoJul 22, 2026
Editorial illustration for a review of Gemini 3.6 Flash, Google's fast workhorse AI model
AI

Gemini 3.6 Flash review: Google's cheaper, faster workhorse

A hands-on Gemini 3.6 Flash review: the new price, the 17% token cut, where it beats GPT-5.6 and Claude Sonnet 5, and where it still trails them.

Rama Adi NugrahaRama Adi NugrahaJul 22, 2026
Illustration of a branching AI canvas generating images, slides and text
AI

Flowith review: is the AI agent canvas worth it? (2026)

A hands-on Flowith review: what the branching AI canvas and Agent Neo actually do, what Flowith costs in credits, and who should skip it.

Alicia Kirana UtomoAlicia Kirana UtomoJul 20, 2026
Genspark AI Super Agent review illustration
AI

Genspark AI review 2026: is the Super Agent worth it?

A hands-on Genspark AI review: what the Super Agent actually does, real pricing and the credit-burn problem, and whether it's worth paying for in 2026.

Alicia Kirana UtomoAlicia Kirana UtomoJul 20, 2026
Illustration of a no-code AI agent builder canvas with workflow nodes
AI

The 7 best no-code AI agent builders in 2026

I tested the top no-code AI agent builders for support teams in 2026, from Botpress to Copilot Studio, and ranked which one actually fits your setup.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieJul 11, 2026
Illustration of an AI desktop app driving its own browser window, clicking and filling forms on its own.
AI

Claude Cowork browser: what Anthropic's built-in agentic browser does

Anthropic put a real browser inside the Claude Cowork desktop app. Here is what the Claude Cowork browser does, which plans get it, and where it fits.

Alicia Kirana UtomoAlicia Kirana UtomoAug 30, 2026
Illustration of a credit meter and three plan tiers, representing Gumloop's credit-based pricing
AI

Gumloop pricing 2026: what a credit really costs you

Gumloop pricing starts at $37/month for 20,000 credits. Here's what a credit actually is, the five meters on every agent chat, and where the bill jumps.

Rama Adi NugrahaRama Adi NugrahaAug 17, 2026
Illustration of the Buzz app: chat channels where people and AI agents collaborate, with a honeycomb motif
AI

What is Buzz? Jack Dorsey's AI agent workspace, explained

Buzz is Jack Dorsey's new open-source team chat app where humans and AI agents share the same channels. Here's what it is, who it's for, and the catch.

Alicia Kirana UtomoAlicia Kirana UtomoJul 23, 2026

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free