Hunyuan Hy3 is the first Chinese open-weight reasoning model cheap enough to self-host casually — Apache 2.0, a sub-300GB FP8 footprint, and a 256K context window. That combination turns a question most agencies never seriously asked into a live one: for a given piece of work, do you route it to Hy3 or keep it on a frontier closed model?
The answer is almost never a blanket yes or no. It is a per-task decision that turns on three variables at once — the type of work, the token economics, and how sensitive the data is. Hy3 is genuinely competitive on agentic search, tool orchestration and long-context retrieval; it trails a frontier model on repo-scale coding by a real margin. It costs one to two orders of magnitude less per token. And because it is a Tencent model, the API-versus-self-host choice is a data-jurisdiction decision, not just a compute-budget one.
This guide is the companion to our launch coverage, not a repeat of it. It assumes you already know Hy3 shipped; its job is to give you a decision-ready routing framework — a task matrix, a cost read that stays honest about a moving price, and a self-host fork grounded in the actual legal exposure — that an agency ops lead can screenshot and use.
- 01Apache 2.0 is what makes the routing question real.The full July 6 release dropped the geographic limits of the April preview. The weights now carry no field-of-use or royalty restriction, so self-hosting on your own infrastructure is a genuine option — not just a licence you have to negotiate around.
- 02Route by task type first.Send agentic web research, tool orchestration and long-context retrieval to Hy3, where its Tencent-reported benchmarks lead the open field. Keep repo-scale coding on a frontier model — Hy3's 78.0 SWE-bench Verified trails GLM-5.2's 84.2, and the gap shows up in real work.
- 03The reasoning_effort parameter is a per-step cost lever.no_think, low and high are selectable per request. In a multi-step agent loop, route parsing, formatting and classification sub-steps to no_think and reserve high for the planning step — a cost-control pattern the model card enables but does not spell out.
- 04Treat any single price as a snapshot, not a fact.OpenRouter routes Hy3 across multiple hosts at different price points, and a free tier is phasing in and out. As of early July 2026 the paid listing sits in the region of $0.14–0.20 input and $0.58–0.80 output per million tokens — roughly one to two orders of magnitude below every frontier model.
- 05Self-host is the only path that removes the jurisdiction question.Using OpenRouter and using Tencent Cloud directly are not the same data-exposure profile, and neither erases China's cross-border and cybersecurity obligations. Self-hosting the Apache 2.0 weights on infrastructure you control is the one route where client prompts never transit Tencent's own systems.
01 — Why NowApache 2.0 is what turned Hy3 into a routing question.
The April 2026 Hy3 preview shipped under Tencent’s restrictive “Hy Community License Agreement,” which explicitly excluded the EU, the UK and South Korea from its usage terms. For a European agency that made the model a non-starter — you could read about it, not build on it. The July 6 full release reversed that: Hy3 now ships under Apache 2.0, which carries no field-of-use or geographic restriction and no royalty obligation, and permits commercial deployment, fine-tuning and redistribution of the weights without Tencent’s involvement.
That licence change is the whole reason this is a decision guide rather than a news recap. When a capable reasoning model becomes freely deployable and an order of magnitude cheaper than the frontier per token, “which model do we use” stops being a default and becomes a per-workload call. Hy3 is a 295B-parameter Mixture-of-Experts model with 21B active parameters per token and a native 256K context window — capable enough to matter, small enough to run. The question is no longer whether to consider it, but where.
Before going further, one disambiguation: Hy3 is a text reasoning model. It is not an image or video product, and it is a separate release from the more restrictively licensed Hy3 preview of April. Everything below concerns the July open-weight reasoning model and how an agency should slot it into an existing agent stack.
02 — The FrameworkThree axes decide every route.
Most Hy3 coverage presents its benchmarks and its self-hosting economics as two separate stories. In practice they are inputs to a single decision, alongside a third variable the benchmark coverage rarely connects to a routing choice: data sensitivity. Weigh all three together and the right destination for a given task usually falls out cleanly.
Task type
Hy3's Tencent-reported numbers lead the open field on agentic search, tool orchestration and long-context retrieval, and trail a frontier model on repo-scale coding. Match the task to the strength — do not treat one score as the whole picture.
Token economics
Hy3 runs one to two orders of magnitude below frontier pricing per token. For high-volume, token-heavy pipelines that is decisive; for a handful of high-stakes calls a month the absolute saving is trivial and quality should win.
Data sensitivity
If the prompt carries regulated or EU personal data, the constraint stops being capability or cost and becomes jurisdiction. That does not rule Hy3 out — it rules out routing that data through a China-hosted API, and points to self-hosting the open weights instead.
All three at once
A task rarely scores the same on all three axes. Agentic research on public data is an easy yes. Regulated-data processing is a capability yes but an API no. Repo-scale coding is a no almost regardless of cost. The matrix later in this guide resolves the common cases.
03 — Task FitWhere Hy3 earns the route — and where it does not.
The chart below sets Hy3’s agentic and long-context scores next to its coding results, drawn from Tencent’s own benchmark appendix as reported by VentureBeat. Orange marks the tasks where Hy3 leads the open-weight field; blue marks the coding suite, where GLM-5.2 — a larger model using roughly double Hy3’s active-parameter compute per token — is ahead. One caveat applies to every bar: these are vendor-reported numbers. As of early July 2026, no independent evaluator had published a third-party verification, so treat them as directional and benchmark on your own workloads before switching a default.
Hy3 · agentic strengths vs coding gap (Tencent-reported)
Source: VentureBeat, citing Tencent's benchmark appendix — vendor-reported, not independently verifiedThe pattern is consistent, and it maps directly onto agency work. Client and market research that walks the web, multi-step tool loops that call MCP servers, and question-answering over long briefs or document sets are exactly where Hy3 is strongest — and those are also some of the most token-hungry, repeatable tasks an agency runs. The coding gap is equally clear-eyed: on repo-scale software work Hy3 is a capable assistant but not a frontier one, and the DeepSWE result in particular shows the distance is not marginal. If your agent writes production code across a real repository, that work belongs on a frontier model. For the precise coding-vs-hardware trade, we walk through matching open-weight coding models to hardware separately.
04 — Cost ControlThe reasoning_effort lever is a per-step budget knob.
Hy3’s model card documents a reasoning_effort parameter with three settings, selectable per request via extra_body. This is more than a quality dial — inside an agent loop it is a genuine cost lever, and using it well is one of the biggest practical savings Hy3 offers over a flat frontier call.
no_think
The default. Direct output with no deliberate chain-of-thought. Route parsing, formatting, extraction and classification sub-steps here — the parts of an agent loop that do not need to reason.
low
A moderate reasoning budget for steps that need some deliberation but are not the hard part of the task — routine synthesis, light multi-step retrieval, structured tool selection.
high
Deep reasoning for complex tasks — the model card names maths, coding and reasoning. Reserve it for the planning step of a multi-step loop, where the quality of the decomposition drives everything downstream.
Set reasoning_effort to high for complex tasks (math, coding, reasoning) or no_think for direct responses.— Tencent Hy Team, Hy3 model card deployment guidance
The pattern most sources miss is what this enables in an agent loop. A single frontier call reasons at one fixed effort for the whole task. With Hy3 you can decompose: keep the expensive high setting for the one or two planning steps that actually need it, and drop every trivial sub-step to no_think. On a loop with a dozen tool calls, the majority of which are parsing and formatting, that is a large output- token saving on top of the already low per-token price — and it costs nothing to implement beyond setting a field per request.
05 — EconomicsThe cost gap is real — and moving.
The headline is straightforward: Hy3 is one to two orders of magnitude cheaper per token than any frontier model. The important discipline is not to pretend the exact number is fixed. OpenRouter routes tencent/hy3 across multiple hosting providers at different price points, and a promotional free tier is phasing in and out, so any single figure is a time-variant snapshot rather than a standing rate.
OpenRouter, early July 2026
A range, deliberately. Live and internal snapshots gathered around launch landed between $0.58 and $0.80 per million output tokens (roughly $0.14–0.20 input). A separate free tier runs a limited window. Self-hosting the weights can undercut this further.
Fable 5 & GPT-5.5
Claude Fable 5 lists $10 input / $50 output; GPT-5.5 lists $5 / $30 under 272K input tokens. Claude Sonnet 5 sits lower at $2 / $10 on intro pricing, and Opus 4.8 at $5 / $25 — every one of them well above Hy3.
Lower output cost
Fable 5's $50/M against Hy3's $0.58–0.80/M works out to roughly 62–86× cheaper; GPT-5.5's $30/M to about 38–52×. Which end of the range you land on depends on the frontier model and the price snapshot — but the order of magnitude holds.
The strategic read matters more than the arithmetic. A cost gap this wide changes which work is economically worth automating at all. Pipelines you would never run against a frontier model because the token bill would swamp the value — exhaustive web research across hundreds of sources, large-scale document triage, high-frequency agent loops — become viable when the per-token cost falls by one to two orders of magnitude. That is the deeper reason to care about Hy3: not that it makes existing workloads cheaper, but that it moves the line on what is worth building. It also strengthens the general case for keeping a second-source strategy against vendor lock-in.
06 — Decision MatrixThe Hy3 task-routing matrix.
Here is the framework as a single reference. For each common category of agency work, it gives a route, the reason, how much weight cost should carry in that specific call, and the data-sensitivity flag to watch. It is the artifact to screenshot — the rest of this guide is the reasoning behind each cell.
| Agency task | Route to Hy3? | Why | Cost’s weight in the call | Data-sensitivity flag |
|---|---|---|---|---|
| Agentic web research | Yes | BrowseComp 84.2 (Tencent-reported), framed competitive with the frontier on agentic web tasks. | Decisive — high token volume magnifies the per-token saving. | Low on public data; re-check if prompts carry client PII. |
| Tool orchestration (MCP) | Yes | MCP-Atlas 79.1 leads the open field; slots into existing agent-scaffolding tools. | Decisive — many small calls, and no_think trims most of them. | Depends on what the tools return — audit the payloads. |
| Long-context document QA | Conditional | AA-LCR 73.4 and native 256K context are strong; verify on your own corpus before committing. | Meaningful — long inputs amplify the per-token gap. | High if the documents are regulated or client-confidential. |
| Repo-scale coding | No | SWE-bench Verified 78.0 vs GLM-5.2 84.2; the gap is real in production code. | Not enough to offset the quality gap — keep it on frontier. | Usually low, but proprietary source may raise it. |
| Creative & campaign copy | Conditional | Capable, but brand-voice fidelity usually favours your tuned default model. | Minor — volume is rarely the bottleneck for finished copy. | Low, unless the brief includes unreleased client material. |
| Regulated / client-PII processing | Self-host only | Capability is fine; the constraint is jurisdiction, not quality. | Irrelevant next to compliance — never the deciding factor here. | Critical — run the Apache 2.0 weights on your own infra, never a China-hosted API. |
The single most common mistake is to read only the first two columns. An agentic-research task on public data and a regulated-data task can both be capability-and-cost wins for Hy3, yet route to completely different infrastructure — the public one to any convenient API, the regulated one to self-hosted weights only. The right-hand column is what keeps the matrix from producing a compliant-looking decision that is quietly a data-governance problem. This is the same model-selection discipline we bring to our AI transformation engagements.
07 — The Real ForkAPI versus self-host is a data-residency fork.
Most coverage frames self-hosting purely as a hardware-and-cost trade. For any agency touching sensitive data it is first a data-residency question, and it turns on a distinction the phrase “using Hy3” blurs: routing prompts through Tencent Cloud directly, routing them through an OpenRouter third-party host, and self-hosting the weights are three different data-exposure profiles. Only the last removes the China-jurisdiction question rather than relocating it.
| Consideration | Where the prompt goes | ||
|---|---|---|---|
| Tencent Cloud API | OpenRouter-routed API | Self-hosted (Apache 2.0 weights) | |
| Prompt data leaves your infrastructure? | Yes — to Tencent | Yes — to a third-party host | No |
| Exposed to Chinese Cybersecurity Law support obligations? | Yes — Tencent-operated | Depends on the host’s jurisdiction | No |
| GDPR cross-border mechanism needed for EU personal data? | Yes — no China adequacy; SCCs or equivalent | Depends on where the host sits | No — if infra is EU or on-prem |
| Upfront hardware cost | None | None | 4× H200 (FP8, reduced context) to 8× H200 (full precision) |
| Minimum team to operate | None | None | One infrastructure-capable engineering team |
| Best fit | Non-sensitive work, lowest friction | Non-sensitive work, multi-model routing | Regulated or EU-PII work, control-critical |
The self-hosting path is now genuinely reachable, which is what makes the fork a live choice rather than a theoretical one. The FP8 weights sit under 300GB, and one independent hardware analysis (ComputeLeap) sizes a working deployment at roughly 8× NVIDIA H200 for full BF16 precision at 256K context, or 4× H200 for the FP8 build at a reduced 32–64K context, with a KV cache of roughly 80–120GB per concurrent long-context sequence on top. The same analysis estimates spot cost at around $14.56 per hour for the 8-GPU configuration and $7.28 for the 4-GPU one — an independent estimate, not a Tencent figure, and spot pricing is inherently volatile, so treat it as an order-of-magnitude guide rather than a quote. Consumer hardware is ruled out: even a 512GB Mac Studio would have almost nothing left for KV cache once the weights load.
Crucially, GLM-5.2 — the model that beats Hy3 on coding — needs roughly 744GB in FP8 and an 8× H200 node as a floor, so it is far less practical for an agency-sized team to self-host. Hy3’s sub-300GB footprint is the whole reason it, specifically, makes self-hosting a realistic option. We ran the full version of this arithmetic in the same hardware math we ran for GLM-5.2, and the routing conclusions here feed our general self-hosting decision guide.
08 — Data GovernanceThe sensitivity call is, at bottom, a legal one.
The reason data sensitivity is its own routing axis is that a China-domiciled API carries distinct, dated, citable legal exposure that a frontier US or EU endpoint does not. None of this makes Hy3 unusable — self-hosting the open weights sidesteps all of it — but it is exactly why the self-host fork matters for regulated work. The key facts, each from its own established source:
- National Intelligence Law (2017, amended 2018). Article 7 requires all organisations and citizens to support and cooperate with national intelligence work. Legal scholarship debates how the proactive-data-sharing obligation is enforced in practice, but the statutory obligation itself is not in question.
- Cybersecurity Law, AI amendment. An amendment adopted 28 October 2025 took effect 1 January 2026 — six months before Hy3 launched — adding an AI-specific article on state support and strengthening security-oversight language for AI systems.
- DSL and PIPL cross-border controls. China’s Data Security Law and Personal Information Protection Law impose separate transfer controls, with a regulatory security assessment required above defined thresholds; PIPL Article 66 sets penalties up to RMB 50 million or 5% of prior-year turnover for serious violations.
- GDPR Chapter V. China holds no EU adequacy decision, so any EU personal data sent to a China-hosted endpoint needs Standard Contractual Clauses or another approved transfer mechanism first.
- Section 1260H designation. On 7 January 2025 the US Department of Defense added Tencent to its list of “Chinese military companies” under Section 1260H of the FY2021 NDAA. Tencent called the listing a mistake and says it is not a military company or supplier. The designation imposes no sanction or export control, but it is a recognised due-diligence flag for government-adjacent and defence-sector procurement.
None of this is a novel angle invented for this post. We applied the identical framing to Zhipu AI when we wrote up GLM-5.2’s benchmark numbers, and it sits inside the wider question of the broader open-versus-closed tradeoff. Treating China-domiciled model APIs as a live data-residency consideration — not a reflexive ban, and not a non-issue — is the consistent house position.
09 — ConclusionNot a default. A per-task call.
Hy3 is not a model you switch to — it's a route you take, task by task.
The Apache 2.0 release turned Hy3 from a model most Western agencies couldn’t touch into one they have to reason about deliberately. The reasoning is not “is Hy3 good enough” — it is good enough at the right things and honestly behind at others. The reasoning is where a given piece of work should go, weighed on task type, token economics and data sensitivity at once.
The practical playbook is short. Send agentic search, tool orchestration and long-context retrieval to Hy3, and use the reasoning_effort lever to keep its already-low cost lower. Keep repo-scale coding on a frontier model, where the benchmark gap is real and the token saving does not offset it. And when the prompt carries regulated or EU personal data, do not route it through any China-hosted API — self-host the open weights on your own infrastructure, which is the one path that removes the jurisdiction question rather than relocating it.
The broader signal is the one worth holding onto. When a capable reasoning model becomes freely deployable and one to two orders of magnitude cheaper per token, the interesting question stops being which model is smartest and becomes which model is cheap enough, deployable enough and compliant enough to run the specific workload you care about. Hy3 is the clearest example yet of an open model that forces that question — and rewards agencies who answer it per task, not per headline.