Liquid AI releases LFM2.5-2.6B, a 2.6B model that rivals 4x larger models on agent tasks

Liquid AI released LFM2.5-2.6B on Monday, a 2.6-billion-parameter model designed to run capable AI agents entirely on consumer hardware. The model is available on Hugging Face with open weights and targets on-device deployment across laptops and phones. LFM2.5-2.6B achieves 220 tokens per second on an Apple M5 Max and 113 tokens per second on an AMD Ryzen CPU, fitting within 2.5 GB of memory. Liquid AI positions it as competitive with models roughly four times its size on tool use, instruction

2 min
Liquid AI releases LFM2.5-2.6B, a 2.6B model that rivals 4x larger models on agent tasks

Liquid AI released LFM2.5-2.6B on Monday, a 2.6-billion-parameter model designed to run capable AI agents entirely on consumer hardware. The model is available on Hugging Face with open weights and targets on-device deployment across laptops and phones.

LFM2.5-2.6B achieves 220 tokens per second on an Apple M5 Max and 113 tokens per second on an AMD Ryzen CPU, fitting within 2.5 GB of memory. Liquid AI positions it as competitive with models roughly four times its size on tool use, instruction following, and multi-step agentic tasks.

Benchmarks

On instruction-following benchmarks, the model tops every category against comparable models including Gemma 4 E2B (5.1B), Qwen 3.5 4B (4.7B), and Gemma 4 E4B (8B). It scores 59.17 on IFBench and 80.07 on Multi-IF, well ahead of the next best 5.1B model at 34.08 and 69.44 respectively. On BFCLv4, a tool-calling benchmark, it reaches 56.88, behind only Qwen 3.5 9B at 60.13.

On math, LFM2.5-2.6B scores 51.87 on AIME25, competitive with Qwen 3.5 4B at 49.33. On LiveCodeBench v6 it scores 59.41, ahead of both Gemma models.

LFM2.5-2.6B on-device agent deployment architecture
LFM2.5-2.6B on-device agent deployment architecture

Training pipeline

Liquid AI used a four-stage post-training pipeline to build the model's agent capabilities. After pre-training on roughly 34 trillion tokens and extending the context window to 128K tokens, the team applied supervised fine-tuning with an emphasis on tool-use and agent trajectory data, trained specialist teachers per domain, distilled them into a single student via multi-domain on-policy distillation, and finally ran multi-turn reinforcement learning inside real agent harnesses.

The agentic RL pipeline separates model optimization, inference, and environment execution into distinct components. A training engine optimizes the model while a rollout engine generates actions using the latest policy. Actions execute inside a sandboxed black-box harness where the model interacts with task environments. A harness proxy captures token-level trajectories for RL training without modifying the harness itself.

The model was trained inside popular agent harnesses to improve compatibility across different tools, system prompts, and multi-turn task environments.

Written by

More to read

  • Meta Prepares Consumer AI Agent 'Hatch' and October Launch for 'Watermelon' Frontier Model

    Meta Platforms is preparing to roll out an autonomous consumer AI agent codenamed Hatch in late August or early September, followed by the planned release of its next flagship foundation model, codenamed Watermelon, in October 2026. The initiatives, first reported by The Information, highlight Meta's dual-track approach to commercialize autonomous software workflows while scaling foundation model training compute to compete directly with frontier offerings from OpenAI and Anthropic. Consumer

    1 min
  • Continuous LLM Performance Profiling in Production: Roofline Models, Model FLOPs Utilization, Model Bandwidth Utilization, and Hardware Bottleneck Diagnostics

    Evaluating the runtime performance of large language model serving infrastructures requires looking beyond raw GPU metrics. Standard operating system utilities such as nvidia-smi report high GPU utilization percentages whenever compute cores or memory controllers are active, masking critical inefficiencies in memory access, communication, and kernel scheduling. A serving node running single-stream autoregressive decoding can report 100% GPU utilization while operating at less than 2% of the hard

    1 min
  • Latent Reasoning in Large Language Models: How Continuous Thoughts and Recurrent Hidden States Bypass Discrete Tokenization

    Standard autoregressive language models solve multi-step reasoning tasks by generating explicit verbal scratchpads. Under the Chain-of-Thought (CoT) paradigm formalized by Wei et al. (2022), a Transformer expands its effective computational depth by emitting intermediate natural language tokens into the prompt context. Each emitted token provides an additional forward pass through the network's layers, transforming reasoning into a sequence of left-to-right text predictions. While language-base

    1 min