Meituan's open-weight Mixture-of-Experts model with 1.6 trillion total parameters and about 48 billion active per token, built for agentic coding with a native 1-million-token context. It uses LongCat Sparse Attention and zero-computation experts, and was trained on a 50,000-card domestic AI ASIC cluster. Meituan reports 59.5 on SWE-bench Pro, 77.3 on SWE-bench Multilingual, and 70.8 on Terminal-Bench 2.1. It ships under the MIT license and is served at $0.75 per million input tokens and $2.95 per million output tokens.
A solid 1600B-parameter MoE language model from Meituan. A pragmatic middle-ground choice when you need open weights without a flagship-sized footprint. Newly released, so production-readiness is still being shaken out.
Generated from this model’s benchmarks and ranking signals. Editor reviews refine it over time.
Access model weights, configuration files, and documentation.
No benchmark data available for this model yet.
See how different quantization levels affect VRAM requirements and quality for this model.
| Format | VRAM Required | Quality | |
|---|---|---|---|
| Q2_K | 402.3 GB | Low | |
| Q4_K_MRecommended | 412.3 GB | Good | |
| Q5_K_M | 417.1 GB | Very Good | |
| Q6_K | 422.9 GB | Excellent | |
| Q8_0 | 434.9 GB | Near Perfect | |
| FP16 | 480.5 GB | Full |
The top devices for this model at 4-bit, ranked by fit and speed.
| Device | Grade | Speed | VRAM |
|---|---|---|---|
| ASUS ExpertCenter Pro ET900N G3ASUS | AA | 13.9 tok/s | 412.3 GB |
| Dell Pro Max with GB300Dell | AA | 13.9 tok/s | 412.3 GB |
| Gigabyte W775-V10-L01Gigabyte | AA | 13.9 tok/s | 412.3 GB |
| HP ZGX Fury AI StationHP | AA | 13.9 tok/s | 412.3 GB |
| MSI XpertStation WS300MSI | AA | 13.9 tok/s | 412.3 GB |
Energy cost on Apple M3 Ultra (32-core CPU, 80-core GPU) (~1.6 tok/s, Q4_K_M) vs flagship API pricing.
| Source | Cost per 1M tokens |
|---|---|
Local (energy only)LongCat-2.0 on Apple M3 Ultra (32-core CPU, 80-core GPU) · ~1.6 tok/s · 160W | $3.34 |
GPT-5.6 LunaOpenAI · in $1.00 · out $6.00 | $2.50 |
Claude Fable 5Anthropic · in $10.00 · out $50.00 | $22.00 |
Gemini 3.5 FlashGoogle · in $1.50 · out $9.00 | $3.75 |
Grok 4.5xAI · in $2.00 · out $6.00 | $3.20 |
API prices blended at 70% input / 30% output.
Hardware amortisation not included. Run the full ROI calculator for payback math.
Cheapest current cloud rentals with at least 412 GB VRAM, refreshed hourly.
No current rental listing covers this model’s VRAM requirement on the providers we track.
LongCat-2.0 is a 1.6-trillion-parameter Mixture-of-Experts language model developed by Meituan, the Chinese technology company best known for its food delivery and local services platform. This is an open-weight model released under the MIT license, making it one of the largest freely available models in existence.
What sets LongCat-2.0 apart is not just its scale, but the hardware it was trained on. Meituan pre-trained this model end-to-end on a 50,000-card cluster of domestic AI ASICs — no NVIDIA GPUs were involved. The training run spanned over 35 trillion tokens across millions of accelerator-days with no rollbacks or irrecoverable loss spikes, which is notable for a cluster running on relatively young silicon toolchains.
The model is designed primarily for agentic coding workflows. It delivers competitive results on code understanding, repository-level edits, automated task execution, and terminal-based operations. With a native 1-million-token context window and sparse attention mechanisms, it handles long-horizon tasks that would choke most dense models. It competes directly with models like DeepSeek-V3 and Qwen3-235B-A22B at the frontier of open-weight MoE architectures, though at a substantially larger total parameter count.
LongCat-2.0 uses a Mixture-of-Experts architecture with 1.6 trillion total parameters, but only approximately 48 billion parameters activate per token. This means the model has a large knowledge base but maintains inference costs similar to a 48B-parameter dense model. The active parameter count varies between 33B and 56B per token depending on the routing decisions, with the 48B figure being the average.
The key architectural feature is LongCat Sparse Attention (LSA), which addresses the output discontinuity and scoring bottlenecks found in earlier sparse attention approaches like DSA. LSA introduces three improvements:
The native 1-million-token context window is not an afterthought. Meituan trained LongCat-2.0 on hundreds of billions of tokens of 1M-context data during post-training, making long-context retrieval and reasoning reliable rather than aspirational. For practitioners working with large codebases, full repository analysis, or long document processing, this context length is the practical differentiator.
LongCat-2.0 supports chat, code generation, reasoning, function-calling, multilingual text, and instruction-following. It is a text-only model — no vision or multimodal capabilities.
Agentic coding is the primary use case. The model integrates with harnesses like Claude Code, OpenClaw, and Hermes for automated task execution. Meituan reports 59.5 on SWE-bench Pro (software engineering benchmark), 77.3 on SWE-bench Multilingual, and 70.8 on Terminal-Bench 2.1. These are competitive scores that place it alongside frontier proprietary models for repository-level code edits and terminal-based agent workflows.
Long-context reasoning is where this model excels over most open-weight alternatives. The 1M-token context, combined with sparse attention, makes it viable for tasks like analyzing entire codebases, processing long technical documents, or maintaining conversation state across hundreds of thousands of tokens without degradation.
Multilingual support covers major languages including Chinese, English, and others typical of models trained on web-scale data. Function-calling and instruction-following are robust enough for building tool-using agents and automated pipelines.
For developers, the practical use cases are: automated code review across large repositories, bug fixing with full project context, generating documentation from codebases, building terminal-based coding assistants, and creating long-running agentic workflows that require maintaining state over extended interactions.
This is a 1600B total parameter MoE model with 48B active parameters. The local hardware requirements depend entirely on which quantization level you can tolerate.
Minimum VRAM requirements by quantization:
| Quantization | VRAM Required | Quality Impact |
|---|---|---|
| FP8 (native) | ~96 GB | Full quality |
| Q4_K_M | ~28 GB | Minimal quality loss |
| Q3_K_M | ~22 GB | Noticeable quality loss |
| Q2_K | ~16 GB | Significant quality loss |
Realistic hardware scenarios:
Recommended setup for most practitioners: Q4_K_M quantization. It preserves most of the model's capabilities while fitting into 28 GB. If you have 24 GB VRAM, Q3_K_M is the practical ceiling for acceptable speed.
Getting started: Ollama supports LongCat-2.0. Pull it with ollama pull longcat-2.0. For custom quantization, use llama.cpp with the -b flag to set batch size and -ngl for GPU layers. Expect to experiment with layer offloading ratios — this model benefits from as many layers on GPU as your VRAM allows.
Tokens per second expectations: On a single RTX 4090 with Q4_K_M and optimal offloading, approximately 3-8 tok/s. On dual 4090s, 15-25 tok/s. On an A100 80GB with FP8, 30-50 tok/s. If you need production throughput, this model requires datacenter hardware or multi-GPU setups.
vs DeepSeek-V3 (671B total, 37B active)
DeepSeek-V3 is the closest direct competitor. It has fewer total parameters but similar active parameters. DeepSeek-V3 has stronger general reasoning benchmarks and broader community adoption. LongCat-2.0 pulls ahead on long-context tasks (1M vs 128K native) and agentic coding benchmarks. Choose LongCat-2.0 if you need the million-token context and repository-level code editing. Choose DeepSeek-V3 if you want a more mature ecosystem with more quantization tooling and community support.
vs Qwen3-235B-A22B (235B total, 22B active)
Qwen3 is a smaller MoE model that fits more easily on consumer hardware. It runs Q4_K_M on a single 24 GB GPU at usable speeds. LongCat-2.0 outperforms it on coding benchmarks, reasoning depth, and context length by a wide margin. Choose Qwen3 if you need something that runs comfortably on one GPU. Choose LongCat-2.0 if you have multi-GPU or high-VRAM hardware and need the extra capability.
The tradeoff is clear: LongCat-2.0 delivers frontier-level coding and long-context capability at the cost of demanding hardware. If you have the hardware, it is the strongest open-weight option for agentic coding workflows. If you are limited to a single consumer GPU, you will need to quantize heavily and accept slower generation.