mrkeyoor.com_
Tue 01 Sept 17:44 UTC
LLM Toolsevaluationupdated 31 Aug 2026

Hy4-preview review

Hy4 preview is Tencent's open-weight mixture-of-experts language model for coding, analysis, tool use, and long-context work. The repository mainly supplies deployment directions and three fine-tuning paths for a 770B-parameter model, with English and Chinese documentation.

+25 / 1dstars / 7d
Verdict

Our Hy4-preview install took 30 seconds and 37 MB, but the documented LoRA floor is 64 GPUs with at least 96 GB each, so this is practical only for teams that already own serious model infrastructure. The repository is worth studying for its three training paths and direct serving recipes. Everyone else should try the model through a provider or choose a smaller open-weight family before building around this preview.

We ran it

Lab card: what happened when we ran Hy4-previewScreenshot of Hy4-preview (github.com/Tencent-Hunyuan/Hy4-preview)
Install✓ · 30s35 packages · 37 MB
Build✓ · 9s
Testsn/ano test script
Known vulns0(pip-audit)
Repo32 files~2,483 lines of source · 24.9 MB · 0 CI workflows

Answers from our run

Does Hy4-preview build from source?

Dependencies installed in 30 seconds (35 packages), and the build succeeded in 9 seconds. We cloned commit 509799b into a clean Debian container with 3 CPUs and no project-specific setup.

Does Hy4-preview have tests you can run?

Not through a standard command: the project exposes no test script or target that our harness could run.

Does Hy4-preview have known vulnerabilities in its dependencies?

pip-audit found none in the dependency tree at the time of our run.

Who should not use Hy4-preview?

Developers looking for a workstation model: the documented serving commands use eight-way tensor parallelism for the FP8 weights.

What are the alternatives to Hy4-preview?

DeepSeek V3, Qwen3, Kimi K2. Our Hy4-preview install took 30 seconds and 37 MB, but the documented LoRA floor is 64 GPUs with at least 96 GB each, so this is practical only for teams that already own serious model infrastructure.

Setup2/5Code installs quickly; the model needs multi-GPU infrastructure
Docs4/5English and Chinese guides cover serving and three training paths
Community2/5291 stars and fresh issue activity, but only four days of history
Maturity1/5Preview model with no release tag, CI workflow, or test target

Who it’s for

AI infrastructure teams that already operate multi-GPU inference with vLLM or SGLang.
Research groups with enough hardware to adapt a 770B-parameter mixture-of-experts model.
Platform developers who need an OpenAI-compatible endpoint and can own the model-serving stack.
Teams comparing open-weight models that want both English and Chinese setup material.

Who it’s NOT for

Developers looking for a workstation model: the documented serving commands use eight-way tensor parallelism for the FP8 weights.
Small fine-tuning teams: Tencent lists 64 GPUs with at least 96 GB each as the minimum LoRA setup, plus 2 TB of CPU memory on each of eight machines.
Buyers who need a settled release line: the project calls Hy4 an early preview, lists slow reasoning and over-verification as known issues, and has no GitHub release.
Teams that require repository-owned checks before changing training code: our checkout had no test directory or CI workflow, and the README does not document a test command.

Setup reality

Our sandbox installed the finetune project in 30 seconds, adding 35 packages and using 37 MB on disk. Its build succeeded in 9 seconds. There was no test script or target, so tests were skipped; pip-audit found 0 known vulnerabilities.

That result covers the training support code, not the 770B-parameter model. Serving requires downloaded weights, a GPU container for vLLM or SGLang, and an OpenAI-compatible client pointed at the local endpoint. Fine tuning also needs explicit model, tokenizer, dataset, output, and distributed-training configuration.

The documented inference examples set tensor parallelism to 8. Tencent's minimum LoRA recipe calls for 8 machines and 64 GPUs with at least 96 GB of GPU memory each; full tuning starts at 16 machines and 128 such GPUs. The repository has no Dockerfile of its own.

Hy4 is a 770B model whose repository mostly ships recipes

Hy4 preview is Tencent's open-weight mixture-of-experts language model. The specification lists 770B total parameters, 49B activated per token, 78 layers, and a 1M-token context window. Tencent provides full and FP8 weights, then points operators to vLLM or SGLang for an OpenAI-compatible server. English and Chinese guides cover three fine-tuning systems.

The checkout is much smaller than the model. Our sandbox saw 32 files, about 2,483 lines of source, and 24.9 MB on disk at commit 509799b. Most of that size came from benchmark images. The Python project lives under finetune, so a successful local install says little about whether your hardware can load Hy4.

The documented serving path uses eight-way tensor parallelism

Tencent's vLLM example runs the FP8 model with tensor parallel size 8, speculative decoding, sparse attention, and Hy4-specific parsers. The SGLang command also sets tensor parallel size 8. Both expose hy4-preview on port 8000, which makes application integration familiar once the GPU server exists.

Our 3-CPU, 8 GB sandbox did not start either image or download weights. It installed only the fine-tuning dependencies. The quick Python client in the README is the final step after a separate model server has been provisioned. Supplying enough accelerators and storage is the purchase decision.

What happened when we ran it

Our sandbox installed the finetune project in 30 seconds. The process added 35 packages and left 37 MB on disk, then the build completed successfully in 9 seconds. Pip-audit reported 0 known vulnerabilities in that environment. These are support-code results for commit 509799b, with no inference, quality, latency, or training measurement implied.

There was no test script or target, so we skipped tests. The checkout had 0 CI workflow files, no Dockerfile, and no tests directory. Tencent supplies external prebuilt images, but the repository does not show how those images are assembled. A team changing the training patches must design its own regression checks and choose which upstream image build to trust.

Fine tuning starts at 64 high-memory GPUs

Tencent lists at least 8 machines and 64 GPUs for LoRA fine tuning, with each GPU carrying at least 96 GB and each machine at least 2 TB of CPU memory. Full tuning starts at 16 machines and 128 GPUs with the same per-device memory floor. Longer sequences and larger batches can raise those requirements.

Our 30-second dependency install does not exercise that path. Multi-machine users must configure passwordless SSH between containers, keep code and data identical on every node, and open an SSH port. This is cluster work with root access inside training containers, not a one-command developer-box experiment.

The native DeepSpeed code supports full and LoRA training with several ZeRO configurations. Separate integrations cover LLaMA-Factory and ms-swift. Each path requires model and tokenizer locations, dataset registration, output storage, and distributed settings. The LLaMA-Factory configuration explicitly enables remote model code.

The 35-package environment we measured is only the common Python layer. LLaMA-Factory comes from its own project, while ms-swift can come from pip or source. There is no lockfile, so operators should freeze a tested environment before launching a 64-GPU job.

The preview label comes with specific behavior limits

Tencent calls Hy4 an early version and names two problems: it can reason longer than necessary on complex tasks and over-verify its own output. The API defaults to high reasoning effort, while callers can request no_think for direct answers. Product teams still need evaluations based on their prompts, tools, languages, and failure costs.

The repository was created on August 27, 2026 and last pushed on August 28. GitHub showed 291 stars and 2 open issues on August 31. One documentation issue about an unsupported training flag was closed the day it was filed. A newer community benchmark issue had no maintainer reply yet. Four days cannot establish a maintenance record.

No release tag and no test target make change control your job

GitHub returned no latest release for Hy4-preview. Users consume a moving main branch, model-host artifacts, and external serving images rather than a fixed repository release. Pin the commit, model revision, image, framework versions, and chat template together so a later investigation can reconstruct the exact combination.

Our build finished in 9 seconds, yet no test target checked the Hy4-specific patches. The closed flag issue shows that documentation and code can briefly disagree. Before a costly run, test tokenization, checkpoint loading, one optimizer step, resume behavior, and artifact saving on a smaller allocation.

Hy4 makes sense only after the infrastructure decision is made

Hy4-preview gives an experienced infrastructure team a direct route to serve and adapt Tencent's model. The bilingual material is detailed, and the 64-GPU minimum is stated plainly. Its audience remains narrow: teams already comfortable with distributed GPU training, remote model code, external images, and their own validation.

A 30-second install and 37 MB dependency footprint should not decide the model choice. Use Hy4 when it wins an evaluation that represents your work and the eight-way layout fits hardware you can operate. If finding 64 suitable GPUs is still an open question, try a smaller model family or hosted access first.

Alternatives

ProjectWhat it isPick it when
DeepSeek V3Another open mixture-of-experts model with local deployment guidance.pick this instead when DeepSeek's model family already fits your serving stack or evaluation set.
Qwen3A broad open-weight model family with several sizes and deployment choices.pick this instead when you need smaller model options before committing to Hy4's hardware scale.
Kimi K2An open mixture-of-experts model aimed at coding and agent tasks.pick this instead when Kimi's serving support or model behavior wins on your own workload.

What people are saying

  1. [hf-trending] tencent/Hy4-preview (trending model on Hugging Face)
  2. [velocity-scout] Tencent-Hunyuan/Hy4-preview

Sources

  1. Hy4-preview README
  2. Hy4-preview fine-tuning guide
  3. Training flag documentation issue

More llm tools reviews

rig · open-knowledge · graphiti · cve-mcp-server · minimind · SillyTavern · the whole board →