Meituan does not immediately come to mind when you think of frontier AI research. That perception might need updating.
Earlier this month, Meituan open-sourced LongCat-2.0, a 1.6 trillion parameter sparse Mixture-of-Experts model with a set of capabilities that place it squarely in the conversation around real-world Agentic Coding tasks. The model averages around 48 billion active parameters during inference, meaning it activates only a fraction of its total capacity for any given token, keeping real-world deployment feasible at scale.
The Architecture: Sparse MoE With Custom Attention
LongCat-2.0 introduces two architectural contributions worth noting.
First, a custom sparse attention mechanism specifically designed for long-context tasks. Standard transformer attention scales quadratically with context length, making million-token contexts computationally expensive. LongCat’s sparse attention mechanism appears designed to handle this more efficiently, though the exact technical details of the sparse pattern are in the released paper.
Second, N-gram Embedding is used to improve both token-level representation and long-context processing efficiency. This is a meaningful combination: better token representations feeding into a more efficient attention mechanism.
The Scale: 50,000 GPUs and Million-Token Context
The most striking claim: LongCat-2.0 is the first trillion-parameter model to complete inference across a 50,000-GPU domestic Chinese computing cluster. That is not a small-scale experiment. That is a production-scale deployment with custom optimization from model architecture through chip-level adaptation to deployment strategy.
The result is support for million-level token context, which is relevant for anyone building long-horizon agentic workflows where context length actually matters.
Open Source: What You Actually Get
Meituan released multiple precision versions alongside the model weights: BF16, FP8, and INT8. The INT8 version is particularly interesting for teams running on constrained hardware or looking to minimize inference costs without full precision degradation.
The domestic GPU inference code is also open sourced, which is the piece most Western teams will not immediately benefit from. But for AI researchers and companies working within the Chinese AI ecosystem, this is significant: it means the full stack from model to deployment tooling is available.
Agentic Coding Focus
Meituan frames LongCat-2.0 as designed for real Agentic Coding tasks, not benchmark chasing. The distinction matters. Agentic Coding requires the model to understand a codebase, plan modifications across multiple files, generate code that fits existing conventions, and potentially iterate based on feedback. That is a different and harder problem than isolated code generation.
The sparse MoE architecture is well-suited for this: different expert subnetworks can specialize for different aspects of the coding task, and the model can route to relevant experts without activating the entire 1.6T parameter network for every token.
What This Means for the Global AI Landscape
Meituan joining the open-source frontier model race is notable. The combination of extreme scale, open release, and domestic hardware optimization signals that Chinese AI labs are not just competing on research, they are building full-stack solutions with real deployment infrastructure.
Whether LongCat-2.0 can compete with GPT-5.6 or Claude Fable 5 on actual coding tasks remains to be seen. Open weights are only part of the equation: inference infrastructure, tooling integration, and community support matter just as much. But a 1.6T parameter sparse model with million-token context that anyone can download and run is worth evaluating seriously.
My Take
LongCat-2.0 does not need to beat GPT-5.6 to be relevant. For teams operating in contexts where long documents, large codebases, or extensive conversation history are the norm, a model specifically optimized for long-context efficiency is worth testing.
The open-source release with multiple precision levels and inference code is a genuine contribution to the AI community. I will be watching how the model performs in independent evaluations, particularly on agentic coding benchmarks where the sparse MoE architecture should show its strengths.
If you are interested in how other Chinese AI models are developing, our breakdown of WorkBuddy covers another Chinese AI tool taking a different approach to agentic workflows.