cd /news/large-language-models/introducing-hy4-preview · home topics large-language-models article
[ARTICLE · art-115441] src=simonwillison.net ↗ pub= topic=large-language-models verified=true sentiment=· neutral

Introducing Hy4 Preview

Tencent released Hy4 Preview, a large language model with a significant size increase from its predecessor Hy3, which had 295B total parameters, 21B active parameters, 256,000 context length, and 598GB size. The new model supports two reasoning effort levels: 'high' (default) and 'no_think' (reasoning disabled), as shown in its chat template on Hugging Face. Simon Willison tested the model via OpenRouter with a prompt to generate an SVG of a pelican riding a bicycle, noting the reasoning trace uses truncated English for token efficiency.

read1 min views1 publishedAug 29, 2026

This is a big size increase from their previous Hy3 in July, which was 295B, 21B active, 256,000 context, 598GB.

I recently started using model chat templates to better understand their capabilities. Here's Hy4's chat_template.jinja on Hugging Face, which includes this section:

{%- if not reasoning_effort is defined %}
    {%- set reasoning_effort = 'high' %}
{%- elif reasoning_effort not in ['high', 'no_think'] %}
    {%- if reasoning_effort is none %}
        {{- raise_exception('reasoning_effort error : None, should be no_think/high') }}
    {%- else %}
        {{- raise_exception('reasoning_effort error : ' + reasoning_effort + ', should be no_think/high') }}
    {%- endif %}
{%- endif %}

So it looks like there are just two reasoning effort levels: "high" (the default) and "no_think" (reason by disabled).

I tried my "Generate an SVG of a pelican riding a bicycle" prompt with the default high reasoning via OpenRouter and got this:

Quoting the reasoning trace:

[...] Let's maybe add a helmet? It could improve riding theme, but may obscure head. Maybe a small cycling cap or helmet? The user didn't ask; can add red helmet? Might be cute. But pelican with big beak; a helmet might obscure. Better maybe no.

Maybe add sunglasses? no.

Maybe add water? no.

It's interesting how the reasoning trace uses slightly truncated English, presumably because perfect grammar isn't useful or token efficient for hidden reasoning text.

Tags: ai, generative-ai, llms, pelican-riding-a-bicycle, llm-reasoning, llm-release, ai-in-china

── more in #large-language-models 4 stories · sorted by recency
── more on @tencent 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/introducing-hy4-prev…] indexed:0 read:1min 2026-08-29 ·