Tencent/Hy4-preview 770B-A49B weight dropped
Summary
Tencent releases Hy4-preview, a new Mixture-of-Experts flagship AI model with 770B total parameters and 49B activated per token, featuring advanced techniques like Gated DeepSeek Sparse Attention and identity Hyper-Connections.
View Cached Full Text
Cached at: 08/28/26, 07:40 AM
tencent/Hy4-preview · Hugging Face
Source: https://huggingface.co/tencent/Hy4-preview 中文| English

https://huggingface.co/tencent/Hy4-preview#table-of-contentsTable of Contents
- Model Introduction
- A New Flagship Generation
- Built for Productivity
- Benchmark Appendix
- Known Limitations
- News
- Model Links
- Quickstart
- Deployment- vLLM - SGLang
- Finetuning
- Quantization
- License
- Contact Us
https://huggingface.co/tencent/Hy4-preview#model-introductionModel Introduction
Hy4 previewis a new-generation Mixture-of-Experts (MoE) flagship model developed by the Tencent Hy Team. The model comprises 770B total parameters, of which 49B are activated per token. The backbone consists of 78 layers, where the first layer uses a standard dense FFN and the remaining 77 layers replace it with MoE, each containing 256 routed experts and 1 shared expert; every token activates the top-8 routed experts along with the shared expert. In addition to the backbone, 1 native MTP layer (10B total parameters, 0.7B activated) is built in for speculative decoding.
On the architecture side, inspired by DeepSeek and GLM, the attention module employs GatedDeepSeek Sparse Attention(Gated DSA) withIndexCachefor cross-layer sparse index reuse. The residual pathway usesiHC (identity Hyper-Connections)to expand inter-layer information flow.
https://huggingface.co/tencent/Hy4-preview#model-specificationsModel Specifications
The table below lists backbone parameters only, excluding the MTP layer.
PropertyValueArchitectureMixture-of-Experts (MoE)Total Parameters770BActivated Parameters49BLayers78Hidden Size6144Attention TypeGated DSAAttention Heads64Query Compression Dimension2048Key-Value Compression Dimension512Indexer Heads / Head Dimension32 / 128Indexer top-k2048Residual Streams4Routed Experts256Shared Experts1Activated Routed Experts per Token8MoE Intermediate Size2048FFN Intermediate Size18432Context Length1MVocabulary Size120832
https://huggingface.co/tencent/Hy4-preview#a-new-flagship-generationA New Flagship Generation
We scaled Hy4 preview on three fronts: model size, context length, and training data. Stronger pre-training and a substantially larger post-training run compound into another step change in capability — the largest generation-over-generation gain we’ve measured, and enough to put Hy4 preview at the open-source frontier.

https://huggingface.co/tencent/Hy4-preview#built-for-productivityBuilt for Productivity
We partnered with top experts inside Tencent — such as software engineers, game developers, finance analysts, and security experts — and built training data around the work they ship. The result is a model that gets meaningfully further on the tasks these teams run every day:
Software engineering: Better at understanding, planning, debugging, and verifying long-horizon development tasks, with further gains in the visual taste and interaction quality of front-end work.
Office and analysis: Takes messy context spread across many files and converts it into shareable artifacts — documents, spreadsheets, and presentations — handling data analysis, equations, and financial models with greater precision.
Game development: Turns a single prompt into a playable prototype and works fluently with game engines, so developers can keep refining complex projects over multiple turns.
Scientific research: Stronger understanding, reasoning, and problem-solving on hard research questions, with solid progress across AI research, molecular dynamics, condensed matter physics, and pure mathematics.
We also continue to co-design Hy4 preview with Tencent products like CodeBuddy and WorkBuddy, so that gains in the model show up in the work people actually do with it. To check that, we ran a blind side-by-side evaluation: 163 internal experts rated model outputs on 203 engineering tasks. Hy4 preview came out slightly ahead of both GLM 5.3 (2.99 vs. 2.92 average, 46.8% wins / 12.8% ties / 40.4% losses) and Kimi K3 (2.99 vs. 2.94, 51.2% wins / 7.9% ties / 40.9% losses).
https://huggingface.co/tencent/Hy4-preview#benchmark-appendixBenchmark Appendix

https://huggingface.co/tencent/Hy4-preview#known-limitationsKnown Limitations
This is an early version of Hy4. There is real headroom left in both pre-training and post-training, and we are shipping with known issues — among them, spending longer than necessary reasoning through complex tasks, and a tendency to over-verify its own work. We’ll keep iterating quickly on these. As with Hy3 preview, we would rather ship early and hear what breaks — that’s what made Hy3 substantially better, and it’s how we will get Hy4 right. We will also keep collaborating closely with Tencent’s products and in-house experts to push the boundaries of model intelligence while making it more abundant and affordable.
https://huggingface.co/tencent/Hy4-preview#newsNews
- 🔥 We open-sourceHy4 previewandHy4 preview-FP8model weights onHugging Face,ModelScope,GitCode, andCNB.
https://huggingface.co/tencent/Hy4-preview#model-linksModel Links
https://huggingface.co/tencent/Hy4-preview#quickstartQuickstart
Deploy Hy4 preview withvLLMorSGLangfirst, then call the OpenAI-compatible API:
from openai import OpenAI
client = OpenAI(base_url="http://127.0.0.1:8000/v1", api_key="EMPTY")
response = client.chat.completions.create(
model="hy4-preview",
messages=[
{"role": "user", "content": "Hello! Can you briefly introduce yourself?"},
],
temperature=0.9,
top_p=1.0,
)
print(response.choices[0].message.content)
Recommended parameters:
temperature=0\.9,top\_p=1\.0. Reasoning mode: Defaults to"high"(deep chain-of-thought), which suits complex tasks such as math, coding, and reasoning. For direct responses, passextra\_body=\{"chat\_template\_kwargs": \{"reasoning\_effort": "no\_think"\}\}.
See theDeploymentsection below for how to start the API server.
https://huggingface.co/tencent/Hy4-preview#deploymentDeployment
For production serving, we recommend usingvLLMorSGLang.
https://huggingface.co/tencent/Hy4-preview#vllmvLLM
Build vLLM from source:
uv venv --python 3.12 --seed --managed-python
source .venv/bin/activate
git clone https://github.com/vllm-project/vllm.git
cd vllm
uv pip install --editable . --torch-backend=auto
Start the vLLM server with MTP enabled:
vllm serve tencent/Hy4-preview-FP8 \
--tensor-parallel-size 8 \
--speculative-config.method mtp \
--speculative-config.num_speculative_tokens 3 \
--attention-backend FLASHMLA_SPARSE \
--tool-call-parser hy_v4 \
--reasoning-parser hy_v4 \
--enable-auto-tool-choice \
--port 8000 \
--served-model-name hy4-preview
Or use official prebuilt imagevllm/vllm\-openai:hy4\-preview:
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 \
--port 8000 \
--served-model-name hy4-preview
https://huggingface.co/tencent/Hy4-preview#sglangSGLang
Use the official prebuilt imagelmsysorg/sglang:hy4\-preview(multi-arch, x86 and Arm):
docker pull lmsysorg/sglang:hy4-preview
docker run --gpus all --ipc=host -p 8000:8000 lmsysorg/sglang:hy4-preview \
python3 -m sglang.launch_server \
--model tencent/Hy4-preview-FP8 \
--tp-size 8 \
--reasoning-parser auto \
--tool-call-parser auto \
--speculative-algorithm NEXTN \
--speculative-num-steps 3 \
--speculative-eagle-topk 1 \
--speculative-num-draft-tokens 4 \
--port 8000 \
--served-model-name hy4-preview
https://huggingface.co/tencent/Hy4-preview#finetuningFinetuning
Hy4 preview provides a complete model finetuning pipeline. For detailed documentation, please refer to:Finetuning Guide
https://huggingface.co/tencent/Hy4-preview#quantizationQuantization
We provideAngelSlim, a more accessible, comprehensive, and efficient toolkit for large model compression. AngelSlim supports a comprehensive suite of compression tools for large-scale multimodal models, including common quantization algorithms, low-bit quantization, and speculative sampling.
https://huggingface.co/tencent/Hy4-preview#licenseLicense
Hy4 preview is released under theApache License 2.0. SeeLICENSEfor details.
https://huggingface.co/tencent/Hy4-preview#contact-usContact Us
If you have any questions or suggestions, feel free to reach out to our R&D and product teams via email:
Hy4 preview is developed by the Tencent Hy Team.
Similar Articles
New open model from Tencent Hy: Hy3 (295B total 21B active - apache 2.0)
Tencent releases Hy3, a 295B-parameter Mixture-of-Experts model with 21B active parameters and Apache 2.0 license, achieving strong benchmark performance comparable to larger flagship models.
tencent/Hy3
Tencent released Hy3, a 295B-parameter Mixture-of-Experts model with 21B active parameters, under Apache 2.0 license, outperforming similar-size models and rivaling larger open-source models with 2-5x parameters.
@NickZhou523786: Try its reasoning and agentic ability!
Tencent Hy announces the preview of Hy4, a 770B parameter open-source AI model built for productivity with a 1M context length.
@0x0SojalSec: Final take : Tencent recently drop a 295B parameter model that only activates 21B params per token. While most labs are…
Tencent released Hy3, a 295B parameter MoE model with 21B active parameters per token, competitive with larger models on agentic coding and tool use tasks, with Apache 2.0 weights.
Tencent begins testing its new flagship model Hunyuan Hy4
Tencent has begun gray testing its new flagship AI model, Hunyuan Hy4, which is labeled as an expert-level model with tool usage capabilities in the Tencent Yuanbao App.