LFM2.5-2.6B makes local agents practical on edge devices
Liquid AI's 2.6B-parameter LFM2.5-2.6B targets on-device agents with tool use, multi-step workflows, fast CPU inference, and support for common local serving stacks.
LFM2.5-2.6B is a 2.6-billion-parameter language model built to run agentic workflows locally, with tool calling, multi-step task support, and low-memory inference as its core advantages. In the announcement published on Hugging Face, Liquid AI positions the model for phones, laptops, and other edge devices rather than cloud-only deployment. For operators, the immediate takeaway is practical: local agents become easier to consider when the model can fit in a small memory budget and still follow instructions well enough to use tools.
Definition: LFM2.5-2.6B is Liquid AI's compact, agent-focused model for local inference, tool use, and multi-step workflows.
Example: A developer can serve LFM2.5-2.6B locally and connect an agent harness to it instead of sending every request to a cloud model.
Key takeaway: The model's strongest reported fit is high-volume agent work where speed, privacy, and local deployment matter more than frontier-scale coding ability.
Business impact: A smaller local model can make background automation more affordable and easier to keep on-device, but teams still need to test accuracy and tool safety on their own workflows.
What changed with LFM2.5-2.6B?
LFM2.5-2.6B changes the local-agent trade-off by combining an explicitly agentic training target with a 2.6B parameter size. Liquid AI says the model supports tool calling and multi-step workflows while remaining small enough for everyday hardware, including phones. That combination matters for operators who need many low-latency tasks or want sensitive prompts to stay on a device: the model is meant to supply the planning and tool-use layer without making every action depend on a hosted inference bill.
LFM2.5-2.6B is not a general claim that every local workload should move to a 2.6B system. Liquid AI reports stronger results for instruction following and tool use than for coding, and it says larger models retain a clear lead on coding-heavy work. The concrete decision is therefore workload-specific: test LFM2.5-2.6B for bounded agent tasks, and keep a larger model for tasks where code quality or broader reasoning is the main constraint.
How fast and memory-efficient is LFM2.5-2.6B?
LFM2.5-2.6B is reported to decode at 220 tokens per second on an Apple M5 Max and 113 tokens per second on an AMD Ryzen AI Max+ 395, with the CPU tests running in under 2.5 GB of memory. Liquid AI also says the model can sustain 30 tokens per second on a phone, which is the performance point most relevant to the edge-agent argument: a local agent can remain responsive without a discrete data-center GPU. Treat those numbers as vendor measurements under stated test conditions, then benchmark the exact runtime, context length, and device used in production.
LFM2.5-2.6B also targets high-throughput GPU serving. Liquid AI reports almost 15,000 output tokens per second at high concurrency and roughly 1.3 billion tokens per day on one H100. LFM2.5-2.6B's H100 result describes a sustained-load server scenario, not a phone or laptop experience. The practical split is clear: CPU and mobile performance support private, responsive local agents, while GPU throughput makes a small model attractive for parallel background workloads.
Why does LFM2.5-2.6B's training recipe matter for agents?
LFM2.5-2.6B's post-training recipe is designed around agent behavior rather than only chat quality. Liquid AI describes four stages: supervised fine-tuning, teacher specialization, multi-domain on-policy distillation, and agentic reinforcement learning. The final stage runs multi-turn tasks inside real agent harnesses and evaluates tool use, code, research, document work, and other multi-step environments. For a team choosing a model, the useful signal is not the stage names alone but the alignment between training environments and the workflows the team wants to automate.
The reported reinforcement-learning setup treats the harness as part of the evaluation environment. Liquid AI says its pipeline uses sandboxed execution, a black-box harness, a harness proxy, and separate training, rollout, and orchestration components. That design is relevant because an agent model does not operate in a vacuum: tool schemas, system prompts, returned data, permissions, and multi-turn state all influence whether a workflow succeeds. Developers should evaluate the full model-plus-harness system rather than relying on a chat benchmark alone.
Where does LFM2.5-2.6B outperform larger models?
LFM2.5-2.6B is the smallest model in Liquid AI's comparison, yet the published table shows it ahead of the listed Gemma and Qwen models on every instruction-following benchmark and on most tool-use benchmarks. It also beats both Gemma models across the listed agentic-task results while remaining close to the Qwen models. These are the source's benchmark claims, so the responsible takeaway is comparative rather than absolute: LFM2.5-2.6B looks unusually competitive for its size in instruction-following and tool-use evaluations.
| Workload area | What Liquid AI reports | Practical reading |
|---|---|---|
| Instruction following | Leads every listed instruction-following benchmark | Strong candidate for structured, constrained tasks |
| Tool use | Leads every listed tool-use benchmark except BFCLv4 | Test it for function calling and bounded tools |
| Agentic tasks | Beats both Gemma models and stays close to the Qwens | Promising for multi-step local workflows |
| Coding | Larger models keep a clear lead | Prefer a larger model for coding-first workloads |
| Local inference | 220 tok/s on M5 Max; 113 tok/s on Ryzen AI Max+ 395 | Speed and memory are central advantages |
LFM2.5-2.6B's benchmark table does not prove that LFM2.5-2.6B is the best model for a particular business, because the published comparisons are controlled evaluations rather than each team's prompts, tool schemas, and failure cases. LFM2.5-2.6B's results show where its design is intended to win — compact agent execution, instruction adherence, and tool interaction — so teams should reproduce a small evaluation set before giving LFM2.5-2.6B access to consequential actions. See also Liquid AI DSpark Speeds LFM2.5 Decoding Up to 3.18x.
How can developers run local agents with LFM2.5-2.6B?
LFM2.5-2.6B is available in the model ecosystem through multiple serving paths, including llama.cpp, MLX, vLLM, SGLang, and ONNX. Liquid AI's setup path is to serve LFM2.5-2.6B locally and then connect an agent harness to it. Developers can use the same separation described in Yowox's guide to running an LLM locally: first confirm that the model server works, then connect one client, then add tools and inspect what crosses the local boundary.
The announced model is compatible with agent harnesses including Hermes Agent, OpenClaw, and Pi. That makes the model layer replaceable inside a broader AI agent architecture: the harness handles the loop, tools, permissions, and recovery, while LFM2.5-2.6B supplies language-model decisions. Teams considering a local rollout should start with read-only tools, narrow the context, log tool calls and results, and require human confirmation before write actions.
LFM2.5-2.6B's hardware fit remains part of the deployment decision. The Yowox Local LLM Hardware Calculator helps compare memory and speed constraints for local models, but its estimates should not be treated as a substitute for testing this specific architecture and runtime. LFM2.5-2.6B's reported sub-2.5 GB CPU footprint makes it a promising candidate for constrained devices; actual fit still depends on precision, context, runtime overhead, and the rest of the application.
What should operators watch next for LFM2.5-2.6B?
LFM2.5-2.6B makes local agents more credible as a deployment option, but the announcement does not remove the hard part of agent engineering: validating what the model does with imperfect tool results. LFM2.5-2.6B can be fast and private while still making an unsafe decision if the surrounding harness accepts malformed data or grants excessive permissions. The next useful test is not another headline benchmark; it is a bounded workflow with representative inputs, explicit schemas, failure detection, and a recovery path.
LFM2.5-2.6B is most relevant when a team needs many inexpensive, responsive agent runs and can keep the task narrow enough to evaluate. For cloud-scale reasoning or coding-heavy work, larger models may remain the better fit. For local research, structured extraction, tool-driven background jobs, and privacy-sensitive workflows, LFM2.5-2.6B offers a concrete new point on the size-versus-capability frontier.
Frequently asked questions
What is LFM2.5-2.6B?
LFM2.5-2.6B is Liquid AI's 2.6-billion-parameter, agent-focused language model. The model is designed to run on local hardware, including phones, while handling tool calls, instruction following, and multi-step agentic tasks. Liquid AI says the model is available alongside LFM2.5-2.6B-Base and supports common inference ecosystems such as llama.cpp, MLX, vLLM, SGLang, and ONNX. The practical distinction is that LFM2.5-2.6B is the post-trained agent model, while the Base version is intended as a starting point for further customization.
How much memory does LFM2.5-2.6B need?
Liquid AI reports that LFM2.5-2.6B runs in under 2.5 GB of memory in its CPU-inference measurements. Actual requirements still depend on the runtime, precision, context length, operating system, and other workloads sharing the device. The reported memory figure is therefore a useful starting point, not a universal hardware guarantee. Before deploying the model in a business workflow, test the exact serving stack and context size on the target device, then measure latency, output quality, and failure handling with representative tasks.
Is LFM2.5-2.6B good for coding?
LFM2.5-2.6B can handle coding-related evaluation, but Liquid AI identifies coding as the area where larger comparison models retain a clear advantage. The model's stronger fit is instruction following, tool use, and high-volume agentic work where local speed, privacy, and low marginal inference cost matter. Use a larger model when code generation or software engineering is the primary requirement, and evaluate LFM2.5-2.6B for bounded tool workflows, structured instructions, and background tasks where its smaller footprint is more valuable than maximum coding capability.
How can developers connect LFM2.5-2.6B to an agent harness?
The announced workflow is to serve LFM2.5-2.6B locally and then connect an agent harness to it. Liquid AI says the model works with harnesses including Hermes Agent, OpenClaw, and Pi, and it provides a guide for local serving and connection setup. A responsible rollout should begin with read-only tools and a narrow task, inspect tool-call arguments and returned data, and add write permissions only after the model and surrounding validation layer behave reliably on real examples.
Alex
Founder & Lead AI Writer
Alex is the founder of Yowox and lead AI writer since 2024, breaking down complex information into clear, actionable insights for thousands of readers every day. Alex has built AI automation systems for businesses since 2024, focusing on AI agents, workflow automation, and business process optimization.
Save hours. Save thousands.
Practical guides, real workflows, and the latest AI and automation news that matters — straight to your inbox.