Wednesday, September 16, 2026
No Result
View All Result
Future News 24
Advertisement
  • Home
  • AI Research
  • Platforms
  • Ethics
  • Developer AI
  • Industry
  • Data Science
  • Emerging Tech
  • Quantum
  • BioTech
  • Decentralized
  • Home
  • AI Research
  • Platforms
  • Ethics
  • Developer AI
  • Industry
  • Data Science
  • Emerging Tech
  • Quantum
  • BioTech
  • Decentralized
No Result
View All Result
Future News 24
No Result
View All Result
Home Developer AI & Open-Source Ecosystem

Deploy native brokers in every single place with LFM2.5-2.6B

Future News 24 by Future News 24
August 5, 2026
in Developer AI & Open-Source Ecosystem
0 0
0
Deploy native brokers in every single place with LFM2.5-2.6B
0
SHARES
0
VIEWS
Share on FacebookShare on Twitter


LFM2.5-2.6B is constructed to energy succesful brokers solely on-device. It helps device calling and multi-step workflows whereas staying small and quick sufficient for on a regular basis {hardware}, from laptops to telephones. This allows builders to deploy brokers in every single place, preserve information personal on the gadget, and scale utilization with out a cloud inference invoice.

Finest-in-class agent: Aggressive with fashions 4x bigger on device use, instruction following, and multi-step agentic duties.
Agentic reinforcement studying: Educated inside the preferred agentic harnesses to enhance compatibility.
Environment friendly inference: 220 tok/s on an Apple M5 Max and 113 tok/s on an AMD Ryzen CPU, in underneath 2.5 GB of reminiscence.

lfm2_5_2_6b_evaluations


How we constructed a dependable agentic mannequin for edge units

LFM2.5-2.6B is pre-trained on ~34T tokens, with a mid-training part that extends the context window to 128K. Put up-training then turns the bottom mannequin into an agent in 4 levels:

Supervised fine-tuning (SFT): two rounds of SFT, weighted closely towards agentic information like device use, net search, and harness trajectories.
Instructor specialization: prepare one specialist instructor per area (math, code, device use, and extra).
Multi-domain on-policy distillation (MOPD): distill the specialist lecturers right into a single pupil.
Agentic Reinforcement Studying (Agentic RL): run multi-turn RL inside actual agent harnesses, the place the mannequin learns to work throughout totally different instruments, system prompts, and multi-turn job environments.

LFM2.5-2.6B-Training-Recipe

The Agentic RL pipeline separates mannequin optimization, inference, and atmosphere execution into distinct parts. The Coaching Engine optimizes the mannequin, whereas the Rollout Engine generates actions utilizing the newest coverage. The RL framework orchestrates the coaching loop by launching rollouts, gathering trajectories and rewards, and updating the mannequin.

Actions are executed inside a Sandbox Service, the place the Blackbox Harness hosts the agent (e.g., OpenClaw or Hermes Agent) and coordinates interactions with the duty atmosphere. The Harness Proxy lets us deal with agentic harnesses as black containers with no modification, whereas transparently capturing the token-level trajectories wanted to reconstruct and validate RL coaching samples.

LFM2.5-2.6B-Agentic-RL


Benchmark outcomes

We evaluated LFM2.5-2.6B in opposition to fashions as much as ~4x its dimension on STEM, instruction following, device use, and agentic duties. It’s the smallest mannequin within the group, but it competes with and sometimes beats the remaining.

Benchmark
LFM2.5-2.6B (2.6B)
gemma-4-E2B-it (5.1B)
gemma-4-E4B-it (8B)
Qwen3.5-4B (4.7B)
Qwen3.5-9B (9.7B)

AA Omniscience
-29.50
-74.47
-49.03
-54.30
-50.43

AIME25
51.87
26.33
34.27
49.33
56.07

LiveCodeBenchv6
59.41
54.92
63.77
60.85
69.86

IFBench
59.17
34.08
39.24
48.40
56.47

Multi-IF
80.07
69.44
77.35
55.67
62.55

IFStruct
85.49
64.85
76.65
36.25
78.50

BFCLv4
56.88
36.98
46.39
50.56
60.13

ToolSandbox
77.83
52.40
65.00
75.55
76.44

τ³-Bench Banking
5.67
3.35
4.12
5.45
5.15

Claw-Eval common (EN)
62.85
53.14
58.02
62.28
66.53

PinchBench
68.22
44.24
55.09
71.26
71.45

BrowseComp+ (OpenClaw)
26.89
8.31
15.90
24.46
27.23

On your app, the strengths are instruction following and gear use. LFM2.5-2.6B tops each instruction-following benchmark right here, and each tool-use benchmark besides BFCLv4, the place solely the 9.7B Qwen edges forward. On agentic duties, it beats each Gemma fashions and stays even with the Qwens. It additionally leads on information and stays shut on math. Coding is the one place the bigger fashions preserve a transparent lead, so attain for one thing larger there.


Inference velocity on CPU and GPU

LFM2.5-2.6B ships with day-one assist throughout the inference ecosystem, together with llama.cpp, MLX, vLLM, SGLang, and ONNX.

CPU inference. Attributable to its environment friendly LFM2 structure, LFM2.5-2.6B is the quickest mannequin we examined, with decode speeds of 220 tokens/s on an M5 Max and 113 tokens/s on a Ryzen AI Max+ 395. At 30 tokens/s, it lets you run succesful brokers even on a cellphone.

lfm2_5_2_6b_cpu_inference

GPU inference. LFM2.5-2.6B is the quickest mannequin in its dimension class, reaching nearly 15K output tokens per second at excessive concurrency, roughly 1.3B tokens per day on a single H100.

lfm2_5_2_6b_gpu_inference


The way to use LFM2.5-2.6B

Attain for LFM2.5-2.6B whenever you want on-device brokers for high-volume workloads.

Set up the newest model of transformers (suitable with transformers>=5.0.0):

pip set up -U transformers

Then load and run the mannequin:

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = “LiquidAI/LFM2.5-2.6B”
mannequin = AutoModelForCausalLM.from_pretrained(
model_id,
device_map=“auto”,
dtype=“bfloat16”,

)
tokenizer = AutoTokenizer.from_pretrained(model_id)

immediate = “What’s C. elegans?”
input_ids = tokenizer.apply_chat_template(
[{“role”: “user”, “content”: prompt}],
add_generation_prompt=True,
return_tensors=“pt”,
tokenize=True,
).to(mannequin.gadget)

output = mannequin.generate(
input_ids,
do_sample=True,
temperature=0.2,
top_k=80,
repetition_penalty=1.05,
max_new_tokens=512,
)
print(tokenizer.decode(output[0], skip_special_tokens=False))


LFM2.5-2.6B demo

Take a look at this browser demo of LFM2.5-2.6B powering a analysis agent. The agent helps you analysis particular questions and generates a abstract.


Get Began

Each LFM2.5-2.6B and LFM2.5-2.6B-Base can be found on Hugging Face right this moment.

With LFM2.5, we’re delivering on our imaginative and prescient of AI that runs anyplace. These fashions are:

Obtain: LFM2.5-2.6B-Base and LFM2.5-2.6B on Hugging Face.
Strive: run the WebGPU demo in your browser, no setup wanted.
Use in your harness: comply with our information on find out how to run an area agent, like OpenClaw, Hermes Agent, and Pi.

We will not wait to see what you construct.


Quotation

Please cite this text as:

Liquid AI, “LFM2.5-2.6B: Deploy Brokers All over the place”, Liquid AI Weblog, Aug 2026.

Or use the BibTeX quotation:

@article{liquidAI202626B,
creator = {Liquid AI},
title = {LFM2.5-2.6B: Deploy Brokers All over the place},
journal = {Liquid AI Weblog},
12 months = {2026},
observe = {www.liquid.ai/weblog/lfm2-5-2-6b},
}



Source link

Tags: AgentsDeployLFM2.52.6BLocal
Previous Post

The Obtain: US robotic restrictions, and ICE’s DNA seize

Next Post

Measuring Efficiency of Transformer Inference

Next Post
Measuring Efficiency of Transformer Inference

Measuring Efficiency of Transformer Inference

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Fetching latest news…
FUTURENEWS24
Live Feed
All
AI
Dev
Industry
Frontier
Updates in 60s
FN24 AI & Tech
View All →
Future News 24

The world's leading source for AI research, emerging technology, and the people building the future. Independent, rigorous, and always ahead.

CATEGORIES

  • AI Platforms & Apps
  • AI Research & Breakthroughs
  • BioTechnology
  • Data Science & MLOps
  • Decentralized Technology
  • Developer AI & Open-Source Ecosystem
  • Emerging Technologies & Innovations
  • Ethics & Policy
  • Industry & Business
  • Quantum Computing
  • Uncategorized

LATEST

  • [2602.13312] PeroMAS: A Multi-agent System of Perovskite Materials Discovery
  • GPT-6 Astra overview: code overview good points, privateness, and value
  • GPT-6 Astra: Options, Benchmarks, Pricing, and What’s New
  • About Us
  • Advertise with Us
  • Disclaimer
  • Privacy Policy
  • DMCA 
  • Cookie Policy
  • Terms and Conditions
  • Contact us

© 2026 Future News 24. All rights reserved.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Home
  • AI Research
  • Platforms
  • Ethics
  • Developer AI
  • Industry
  • Data Science
  • Emerging Tech
  • Quantum
  • BioTech
  • Decentralized

© 2026 Future News 24. All rights reserved.

Website security powered by MilesWeb