LongCat-2.0: Meituan Open-Sources 1.6T Agent Model with 1M Context — Trained Entirely on Chinese Chips

By Prahlad Menon 3 min read

The mystery model that topped OpenRouter’s developer rankings as “Owl Alpha” has been unveiled. LongCat-2.0 from Meituan is now fully open-source under the MIT license — and it’s a big deal.

The Numbers

SpecValue
Total Parameters1.6 trillion
Active per Token~48B (dynamic 33B-56B)
Context Window1 million tokens (native)
LicenseMIT
Training Hardware50,000+ Chinese AI ASIC chips
Training Data35+ trillion tokens

This is the first trillion-parameter model to complete full training and inference without relying on NVIDIA GPUs. The entire stack runs on domestic Chinese accelerators.

Agent-Native by Design

LongCat-2.0 isn’t just another LLM — it’s built specifically for agentic coding. It integrates directly with:

  • Claude Code
  • OpenClaw
  • Hermes Agent

The model excels at code understanding, repository-level edits, automated task execution, and complex agentic workflows.

Technical Innovations

LongCat Sparse Attention (LSA)

The 1M context window isn’t just marketing. LSA addresses the quadratic scaling problem with three innovations:

  1. Streaming-aware Indexing (SI) — Reshapes token selection for hardware-aligned sequential reads instead of fragmented memory access

  2. Cross-Layer Indexing (CLI) — Amortizes indexing cost across adjacent layers, since attention saliency stays stable

  3. Hierarchical Indexing (HI) — Two-stage coarse-to-fine scoring shrinks the candidate space per query

Zero-Compute Experts

Dynamic activation ensures simpler tasks consume less computational overhead. The model activates between 33B and 56B parameters depending on task complexity.

N-gram Embedding

135B additional parameters from n-gram embeddings improve parameter utilization efficiency — expanding along sparse dimensions orthogonal to MoE.

Benchmark Performance

LongCat-2.0 competes with frontier models on agentic tasks:

BenchmarkLongCat-2.0GPT-5.5Claude Opus 4.7
Terminal-Bench 2.170.873.871.7
SWE-bench Pro59.558.664.3
SWE-bench Multilingual77.380.5
BrowseComp79.984.479.3
FORTE73.277.877.6

Note: LongCat-2.0 beats GPT-5.5 on SWE-bench Pro (59.5 vs 58.6).

Deployment

Runs on both GPU and NPU platforms. Recommended GPU setup: 16x H20 with Tensor + Expert Parallelism.

SGLang support is available via PR #30042.

python -m sglang.launch_server \
  --model meituan-longcat/LongCat-2.0-FP8 \
  --trust-remote-code \
  --tp 16 --ep 16 \
  --max-running-requests 64

Why This Matters

Three things stand out:

  1. MIT License — Full commercial use, no restrictions. Modify, redistribute, integrate into proprietary software.

  2. Agent-First Design — Not an afterthought. Deep integration with the tools developers actually use.

  3. Hardware Independence — Proof that frontier-scale training is possible without NVIDIA. Millions of accelerator-days, no rollbacks, no irrecoverable loss spikes.

The open-source AI ecosystem just got a serious new player in the agentic coding space.