Model reference · open weights

Youtu-LLM

Available as managed deployment Licence fee LLMs tencent Text gen 1 variants 11k dl/mo

Youtu-LLM is an open-weight language model from tencent. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Makertencent
TypeLanguage models
TaskText gen
Parameters (lead)2.0B
Runs withtransformers
Based ontencent/Youtu-LLM-2B-Base
Released2025-12-31
Popularity11k downloads / month
LicenceCommercial licence needed

About

What Youtu-LLM is

🎯 Brief Introduction

Youtu-LLM is a new, small, yet powerful LLM, contains only 1.96B parameters, supports 128k long context, and has native agentic talents. On general evaluations, Youtu-LLM significantly outperforms SOTA LLMs of similar size in terms of Commonsense, STEM, Coding and Long Context capabilities; in agent-related testing, Youtu-LLM surpasses larger-sized leaders and is truly capable of completing multiple end2end agent tasks.

Youtu-LLM has the following features:

  • Type: Autoregressive Causal Language Models with Dense MLA
  • Release versions: Base and Instruct
  • Number of Parameters: 1.96B
  • Number of Layers: 32
  • Number of Attention Heads (MLA): 16 for Q/K/V
  • MLA Rank: 1,536 for Q, 512 for K/V
  • MLA Dim: 128 for QK Nope, 64 for QK Rope, and 128 for V
  • Context Length: 131,072
  • Vocabulary Size: 128,256

🤗 Model Download

Model NameDescriptionDownload
Youtu-LLM-2B-BaseBase model of Youtu-LLM-2B🤗 Model
Youtu-LLM-2BInstruct model of Youtu-LLM-2B🤗 Model
Youtu-LLM-2B-GGUFInstruct model of Youtu-LLM-2B, in GGUF format🤗 Model

📰 News

📊 Performance Comparisons

Instruct Model

General Benchmarks

BenchmarkDeepSeek-R1-Distill-Qwen-1.5BQwen3-1.7BSmolLM3-3BQwen3-4BDeepSeek-R1-Distill-Llama-8BYoutu-LLM-2B
Commonsense Knowledge Reasoning
MMLU-Redux53.0%74.1%75.6%83.8%78.1%75.8%
MMLU-Pro36.5%54.9%53.0%69.1%57.5%61.6%
Instruction Following & Text Reasoning
IFEval29.4%70.4%60.4%83.6%34.6%81.2%
DROP41.3%72.5%72.0%82.9%73.1%86.7%
MUSR43.8%56.6%54.1%60.5%59.7%57.4%
STEM
MATH-50084.8%89.8%91.8%95.0%90.8%93.7%
AIME 2430.2%44.2%46.7%73.3%52.5%65.4%
AIME 2523.1%37.1%34.2%64.2%34.4%49.8%
GPQA-Diamond33.6%36.9%43.8%55.2%45.5%48.0%
BBH31.0%69.1%76.3%87.8%77.8%77.5%
Coding
HumanEval64.0%84.8%79.9%95.4%88.1%95.9%
HumanEval+59.5%76.2%74.7%87.8%82.5%89.0%
MBPP51.5%80.5%66.7%92.3%73.9%85.0%
MBPP+44.2%67.7%56.7%77.6%61.0%71.7%
LiveCodeBench v619.8%30.7%30.8%48.5%36.8%43.7%

Agentic Benchmarks

BenchmarkQwen3-1.7BSmolLM3-3BQwen3-4BYoutu-LLM-2B
Deep Research
GAIA11.4%11.7%25.5%33.9%
xbench11.7%13.9%18.4%19.5%
Code
SWE-Bench-Verified0.6%7.2%5.7%17.7%
EnConda-Bench10.8%3.5%16.1%21.5%
Tool
BFCL V355.5%31.5%61.7%58.0%
τ²-Bench2.6%9.7%10.9%15.0%

🚀 Quick Start

This guide will help you quickly deploy and invoke the Youtu-LLM-2B model. This model supports "Reasoning Mode", enabling it to generate higher-quality responses through Chain of Thought (CoT).

If you wish to use Youtu-LLM-2B based on earlier versions of transformers, please make sure to download the model repository before this commit.

1. Environment Preparation

Ensure your Python environment has the transformers library installed and that the version meets the requirements.

pip install "transformers>=4.56.0,<=4.57.1" torch accelerate

Note

  • (1) We recommend to limit the version of transformers: pip install "transformers>=4.56.0,<=4.57.1", which is comparable with the current remote codes;
  • (2) Do not use transformers==4.57.2, since there is a bug unfixed;
  • (3) If you would like to maintain a higher version (e.g., 4.57.3), you should slightly modify the "check_model_inputs" in modeling_youtu.py to "check_model_inputs()", following the patch.

2. Core Code Example

The following example demonstrates how to load the model, enable Reasoning Mode, and use the re module to parse the "Thought Process" and the "Final Answer" from the output.

import re
from transformers import AutoTokenizer, AutoModelForCausalLM

# 1. Configure Model
model_id = "tencent/Youtu-LLM-2B"

# 2. Initialize Tokenizer and Model
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    device_map="auto",
    trust_remote_code=True
)

# 3. Construct Dialogue Input
prompt = "Hello"
messages = [{"role": "user", "content": prompt}]

# Use apply_chat_template to construct input; set enable_thinking=True to activate Reasoning Mode
input_text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True,
    enable_thinking=True
)

model

From the published model card. Full card on the HuggingFace links in the sidebar.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys youtu-llm for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (youtu-llm below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/chat/completions \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"youtu-llm","messages":[{"role":"user","content":"Hello"}]}'

Create an account — your API key is available in the console. 5M tokens/month currently included with every new account at launch.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms