tencent / Hunyuan-A13B-Instruct

huggingface.co
Total runs: 44.7K
24-hour runs: 0
7-day runs: 2.0K
30-day runs: -374
Model's Last Updated: August 21 2025
text-generation

Introduction of Hunyuan-A13B-Instruct

Model Details of Hunyuan-A13B-Instruct


🫣 Hugging Face |   🖥️ Official Website |   🕖 HunyuanAPI |   🕹️ Demo |

GITHUB | LICENSE

Welcome to the official repository of Hunyuan-A13B , an innovative and open-source large language model (LLM) built on a fine-grained Mixture-of-Experts (MoE) architecture. Designed for efficiency and scalability, Hunyuan-A13B delivers cutting-edge performance with minimal computational overhead, making it an ideal choice for advanced reasoning and general-purpose applications, especially in resource-constrained environments.

Model Introduction

With the rapid advancement of artificial intelligence technology, large language models (LLMs) have achieved remarkable progress in natural language processing, computer vision, and scientific tasks. However, as model scales continue to expand, optimizing resource consumption while maintaining high performance has become a critical challenge. To address this, we have explored Mixture of Experts (MoE) architectures. The newly introduced Hunyuan-A13B model features a total of 80 billion parameters with 13 billion active parameters. It not only delivers high-performance results but also achieves optimal resource efficiency, successfully balancing computational power and resource utilization.

Key Features and Advantages
  • Compact yet Powerful : With only 13 billion active parameters (out of a total of 80 billion), the model delivers competitive performance on a wide range of benchmark tasks, rivaling much larger models.
  • Hybrid Inference Support : Supports both fast and slow thinking modes, allowing users to flexibly choose according to their needs.
  • Ultra-Long Context Understanding : Natively supports a 256K context window, maintaining stable performance on long-text tasks.
  • Enhanced Agent Capabilities : Optimized for agent tasks, achieving leading results on benchmarks such as BFCL-v3 and τ-Bench.
  • Efficient Inference : Utilizes Grouped Query Attention (GQA) and supports multiple quantization formats, enabling highly efficient inference.
Why Choose Hunyuan-A13B?

As a powerful yet computationally efficient large model, Hunyuan-A13B is an ideal choice for researchers and developers seeking high performance under resource constraints. Whether for academic research, cost-effective AI solution development, or innovative application exploration, this model provides a robust foundation for advancement.

Related News
  • 2025.6.27 We have open-sourced Hunyuan-A13B-Pretrain , Hunyuan-A13B-Instruct , Hunyuan-A13B-Instruct-FP8 , Hunyuan-A13B-Instruct-GPTQ-Int4 on Hugging Face.
Benchmark

Note: The following benchmarks are evaluated by TRT-LLM-backend

Model Hunyuan-Large Qwen2.5-72B Qwen3-A22B Hunyuan-A13B
MMLU 88.40 86.10 87.81 88.17
MMLU-Pro 60.20 58.10 68.18 67.23
MMLU-Redux 87.47 83.90 87.40 87.67
BBH 86.30 85.80 88.87 87.56
SuperGPQA 38.90 36.20 44.06 41.32
EvalPlus 75.69 65.93 77.60 78.64
MultiPL-E 59.13 60.50 65.94 69.33
MBPP 72.60 76.00 81.40 83.86
CRUX-I 57.00 57.63 - 70.13
CRUX-O 60.63 66.20 79.00 77.00
MATH 69.80 62.12 71.84 72.35
CMATH 91.30 84.80 - 91.17
GSM8k 92.80 91.50 94.39 91.83
GPQA 25.18 45.90 47.47 49.12

Hunyuan-A13B-Instruct has achieved highly competitive performance across multiple benchmarks, particularly in mathematics, science, agent domains, and more. We compared it with several powerful models, and the results are shown below.

Topic Bench OpenAI-o1-1217 DeepSeek R1 Qwen3-A22B Hunyuan-A13B-Instruct
Mathematics AIME 2024
AIME 2025
MATH
74.3
79.2
96.4
79.8
70
94.9
85.7
81.5
94.0
87.3
76.8
94.3
Science GPQA-Diamond
OlympiadBench
78
83.1
71.5
82.4
71.1
85.7
71.2
82.7
Coding Livecodebench
Fullstackbench
ArtifactsBench
63.9
64.6
38.6
65.9
71.6
44.6
70.7
65.6
44.6
63.9
67.8
43
Reasoning BBH
DROP
ZebraLogic
80.4
90.2
81
83.7
92.2
78.7
88.9
90.3
80.3
89.1
91.1
84.7
Instruction
Following
IF-Eval
SysBench
91.8
82.5
88.3
77.7
83.4
74.2
84.7
76.1
Text
Creation
LengthCtrl
InsCtrl
60.1
74.8
55.9
69
53.3
73.7
55.4
71.9
NLU ComplexNLU
Word-Task
64.7
67.1
64.5
76.3
59.8
56.4
61.2
62.9
Agent BDCL v3
τ-Bench
ComplexFuncBench
C3-Bench
67.8
60.4
47.6
58.8
56.9
43.8
41.1
55.3
70.8
44.6
40.6
51.7
78.3
54.7
61.2
63.5

Use with transformers

Below is an example of how to use this model with the Hugging Face transformers library. This includes loading the model and tokenizer, toggling reasoning (thinking) mode, and parsing both the reasoning process and final answer from the output.

from transformers import AutoModelForCausalLM, AutoTokenizer
import os
import re

model_name_or_path = os.environ['MODEL_PATH']
# model_name_or_path = "tencent/Hunyuan-A13B-Instruct"

tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(model_name_or_path,
                                            device_map="auto",trust_remote_code=True)  # You may want to use bfloat16 and/or move to GPU here

messages = [
    {"role": "user", "content": "Write a short summary of the benefits of regular exercise"},
]

tokenized_chat = tokenizer.apply_chat_template(
        messages,
        tokenize=True,
        add_generation_prompt=True,
        return_tensors="pt",
        enable_thinking=True # Toggle thinking mode (default: True)
        )
                                                
outputs = model.generate(tokenized_chat.to(model.device), max_new_tokens=4096)

output_text = tokenizer.decode(outputs[0])

think_pattern = r'<think>(.*?)</think>'
think_matches = re.findall(think_pattern, output_text, re.DOTALL)

answer_pattern = r'<answer>(.*?)</answer>'
answer_matches = re.findall(answer_pattern, output_text, re.DOTALL)

think_content = [match.strip() for match in think_matches][0]
answer_content = [match.strip() for match in answer_matches][0]
print(f"thinking_content:{think_content}\n\n")
print(f"answer_content:{answer_content}\n\n")
Fast and slow thinking switch

This model supports two modes of operation:

  • Slow Thinking Mode (Default): Enables detailed internal reasoning steps before producing the final answer.
  • Fast Thinking Mode: Skips the internal reasoning process for faster inference, going straight to the final answer.

Switching to Fast Thinking Mode:

To disable the reasoning process, set enable_thinking=False in the apply_chat_template call:

tokenized_chat = tokenizer.apply_chat_template(
    messages,
    tokenize=True,
    add_generation_prompt=True,
    return_tensors="pt",
    enable_thinking=False  # Use fast thinking mode
)
Quantitative Compression

We used our own AngleSlim compression tool to produce FP8 and INT4 quantization models. AngleSlim compression tool is expected to be open source in early July, which will support one-click quantization and compression of large models, please look forward to it, and you can download our quantization models directly for deployment testing now.

FP8 Quantization

We use FP8-static quantization, FP8 quantization adopts 8-bit floating point format, through a small amount of calibration data (without training) to pre-determine the quantization scale, the model weights and activation values will be converted to FP8 format, to improve the inference efficiency and reduce the deployment threshold. We you can use AngleSlim quantization, you can also directly download our quantization completed open source model to use Hunyuan-A13B-Instruct-FP8 .

FP8 Benchmark

This subsection describes the Benchmark metrics for the Hunyuan-80B-A13B-Instruct-FP8 quantitative model.

Bench Hunyuan-A13B-Instruct Hunyuan-A13B-Instruct-FP8
AIME 2024 87.3 86.7
Gsm8k 94.39 94.01
BBH 89.1 88.34
DROP 91.1 91.1
Int4 Quantization

We use the GPTQ algorithm to achieve W4A16 quantization, which processes the model weights layer by layer, uses a small amount of calibration data to minimize the reconfiguration error of the quantized weights, and adjusts the weights layer by layer by the optimization process of approximating the Hessian inverse matrix. The process eliminates the need to retrain the model and requires only a small amount of calibration data to quantize the weights, improving inference efficiency and lowering the deployment threshold. You can use AngleSlim quantization, you can also directly download our quantization completed open source model to use Hunyuan-A13B-Instruct-Int4 .

Int4 Benchmark

This subsection describes the Benchmark metrics for the Hunyuan-80B-A13B-Instruct-GPTQ-Int4 quantitative model.

Bench Hunyuan-A13B-Instruct Hunyuan-A13B-Instruct-GPTQ-Int4
OlympiadBench 82.7 84.0
AIME 2024 87.3 86.7
Gsm8k 94.39 94.24
BBH 88.34 87.91
DROP 91.12 91.05
Deployment

For deployment, you can use frameworks such as TensorRT-LLM , vLLM , or SGLang to serve the model and create an OpenAI-compatible API endpoint.

image: https://hub.docker.com/r/hunyuaninfer/hunyuan-a13b/tags

TensorRT-LLM
Docker Image

We provide a pre-built Docker image based on the latest version of TensorRT-LLM.

  • To get started:

https://hub.docker.com/r/hunyuaninfer/hunyuan-large/tags

docker pull hunyuaninfer/hunyuan-a13b:hunyuan-moe-A13B-trtllm
  • Start the API server:
docker run --name hunyuanLLM_infer --rm -it --ipc=host --ulimit memlock=-1 --ulimit stack=67108864 --gpus=all hunyuaninfer/hunyuan-a13b:hunyuan-moe-A13B-trtllm
trtllm-serve \
  /path/to/HunYuan-moe-A13B \
  --host localhost \
  --port 8000 \
  --backend pytorch \
  --max_batch_size 128 \
  --max_num_tokens 16384 \
  --tp_size 2 \
  --kv_cache_free_gpu_memory_fraction 0.95 \
  --extra_llm_api_options /path/to/extra-llm-api-config.yml
vLLM
Docker Image

We provide a pre-built Docker image containing vLLM 0.8.5 with full support for this model. The official vllm release is currently under development, note: cuda 12.8 is require for this docker .

  • To get started:
docker pull docker.cnb.cool/tencent/hunyuan/hunyuan-a13b:hunyuan-moe-A13B-vllm 
or
docker pull hunyuaninfer/hunyuan-a13b:hunyuan-moe-A13B-vllm
  • Download Model file:

    • Huggingface: will download automicly by vllm.
    • ModelScope: modelscope download --model Tencent-Hunyuan/Hunyuan-A13B-Instruct
  • Start the API server:

model download by huggingface:

docker run  --privileged --user root  --net=host --ipc=host \
        -v ~/.cache:/root/.cache/ \
        --gpus=all -it --entrypoint python  hunyuaninfer/hunyuan-a13b:hunyuan-moe-A13B-vllm
 \
         -m vllm.entrypoints.openai.api_server --host 0.0.0.0 --port 8000 \
         --tensor-parallel-size 4 --model tencent/Hunyuan-A13B-Instruct --trust-remote-code 

model downloaded by modelscope:

docker run  --privileged --user root  --net=host --ipc=host \
        -v ~/.cache/modelscope:/root/.cache/modelscope \
        --gpus=all -it --entrypoint python   hunyuaninfer/hunyuan-a13b:hunyuan-moe-A13B-vllm \
         -m vllm.entrypoints.openai.api_server --host 0.0.0.0 --tensor-parallel-size 4 --port 8000 \ 
         --model /root/.cache/modelscope/hub/models/Tencent-Hunyuan/Hunyuan-A13B-Instruct/ --trust_remote_code  
Tool Calling with vLLM

To support agent-based workflows and function calling capabilities, this model includes specialized parsing mechanisms for handling tool calls and internal reasoning steps.

For a complete working example of how to implement and use these features in an agent setting, please refer to our full agent implementation on GitHub:
🔗 Hunyuan A13B Agent Example

When deploying the model using vLLM , the following parameters can be used to configure the tool parsing behavior:

Parameter Value
--tool-parser-plugin Local Hunyuan A13B Tool Parser File
--tool-call-parser hunyuan

These settings enable vLLM to correctly interpret and route tool calls generated by the model according to the expected format.

SGLang
Docker Image

We also provide a pre-built Docker image based on the latest version of SGLang.

To get started:

  • Pull the Docker image
docker pull docker.cnb.cool/tencent/hunyuan/hunyuan-a13b:hunyuan-moe-A13B-sglang
or
docker pull hunyuaninfer/hunyuan-a13b:hunyuan-moe-A13B-sglang
  • Start the API server:
docker run --gpus all \
    --shm-size 32g \
    -p 30000:30000 \
    --ipc=host \
    docker.cnb.cool/tencent/hunyuan/hunyuan-a13b:hunyuan-moe-A13B-sglang \
    -m sglang.launch_server --model-path hunyuan/huanyuan_A13B --tp 4 --trust-remote-code --host 0.0.0.0 --port 30000
Contact Us

If you would like to leave a message for our R&D and product teams, Welcome to contact our open-source team . You can also contact us via email ( [email protected] ).

Runs of tencent Hunyuan-A13B-Instruct on huggingface.co

44.7K
Total runs
0
24-hour runs
2.7K
3-day runs
2.0K
7-day runs
-374
30-day runs

More Information About Hunyuan-A13B-Instruct huggingface.co Model

More Hunyuan-A13B-Instruct license Visit here:

https://choosealicense.com/licenses/tencent-hunyuan-a13b

Hunyuan-A13B-Instruct huggingface.co

Hunyuan-A13B-Instruct huggingface.co is an AI model on huggingface.co that provides Hunyuan-A13B-Instruct's model effect (), which can be used instantly with this tencent Hunyuan-A13B-Instruct model. huggingface.co supports a free trial of the Hunyuan-A13B-Instruct model, and also provides paid use of the Hunyuan-A13B-Instruct. Support call Hunyuan-A13B-Instruct model through api, including Node.js, Python, http.

Hunyuan-A13B-Instruct huggingface.co Url

https://huggingface.co/tencent/Hunyuan-A13B-Instruct

tencent Hunyuan-A13B-Instruct online free

Hunyuan-A13B-Instruct huggingface.co is an online trial and call api platform, which integrates Hunyuan-A13B-Instruct's modeling effects, including api services, and provides a free online trial of Hunyuan-A13B-Instruct, you can try Hunyuan-A13B-Instruct online for free by clicking the link below.

tencent Hunyuan-A13B-Instruct online free url in huggingface.co:

https://huggingface.co/tencent/Hunyuan-A13B-Instruct

Hunyuan-A13B-Instruct install

Hunyuan-A13B-Instruct is an open source model from GitHub that offers a free installation service, and any user can find Hunyuan-A13B-Instruct on GitHub to install. At the same time, huggingface.co provides the effect of Hunyuan-A13B-Instruct install, users can directly use Hunyuan-A13B-Instruct installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Hunyuan-A13B-Instruct install url in huggingface.co:

https://huggingface.co/tencent/Hunyuan-A13B-Instruct

Url of Hunyuan-A13B-Instruct

Hunyuan-A13B-Instruct huggingface.co Url

Provider of Hunyuan-A13B-Instruct huggingface.co

tencent
ORGANIZATIONS

Other API from tencent

huggingface.co

Total runs: 667.9K
Run Growth: 233.1K
Growth Rate: 34.25%
Updated:August 29 2026
huggingface.co

Total runs: 98.0K
Run Growth: -30.7K
Growth Rate: -31.19%
Updated:October 17 2025
huggingface.co

Total runs: 90.7K
Run Growth: -582.4K
Growth Rate: -642.43%
Updated:September 12 2025
huggingface.co

Total runs: 54.8K
Run Growth: -696
Growth Rate: -1.26%
Updated:October 17 2025
huggingface.co

Total runs: 25.5K
Run Growth: -14.8K
Growth Rate: -58.01%
Updated:May 26 2026
huggingface.co

Total runs: 14.0K
Run Growth: -3.8K
Growth Rate: -28.00%
Updated:May 26 2026
huggingface.co

Total runs: 12.3K
Run Growth: 781
Growth Rate: 6.36%
Updated:July 30 2025
huggingface.co

Total runs: 9.2K
Run Growth: 2.7K
Growth Rate: 30.09%
Updated:October 17 2025
huggingface.co

Total runs: 7.2K
Run Growth: -2.1K
Growth Rate: -28.31%
Updated:January 01 2026
huggingface.co

Total runs: 3.3K
Run Growth: 922
Growth Rate: 28.05%
Updated:May 21 2026
huggingface.co

Total runs: 2.9K
Run Growth: 115
Growth Rate: 3.95%
Updated:February 24 2026
huggingface.co

Total runs: 2.7K
Run Growth: -209
Growth Rate: -7.82%
Updated:December 30 2025
huggingface.co

Total runs: 1.2K
Run Growth: -384
Growth Rate: -33.83%
Updated:October 17 2025
huggingface.co

Total runs: 969
Run Growth: 969
Growth Rate: 100.00%
Updated:September 07 2026
huggingface.co

Total runs: 929
Run Growth: -3.5K
Growth Rate: -374.11%
Updated:June 01 2026
huggingface.co

Total runs: 907
Run Growth: 877
Growth Rate: 96.69%
Updated:September 10 2026
huggingface.co

Total runs: 761
Run Growth: -164
Growth Rate: -21.22%
Updated:March 06 2025
huggingface.co

Total runs: 637
Run Growth: 607
Growth Rate: 95.29%
Updated:September 09 2026
huggingface.co

Total runs: 596
Run Growth: 596
Growth Rate: 100.00%
Updated:September 07 2026
huggingface.co

Total runs: 372
Run Growth: -3.0K
Growth Rate: -804.03%
Updated:September 15 2025
huggingface.co

Total runs: 295
Run Growth: -104
Growth Rate: -34.32%
Updated:March 06 2026
huggingface.co

Total runs: 283
Run Growth: -151
Growth Rate: -46.75%
Updated:March 11 2026