Specifications
MoE Efficiency
24B quality, 2B inference cost
Laptop-Ready
Runs on laptops and single GPUs
Tool Calling
Native function calling support
Quick Start
- Transformers
- llama.cpp
- vLLM
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 New: LFM2-24B-A2B — our largest model is now available! Learn more →
24B parameter Mixture-of-Experts model with 2B active parameters — our largest model for laptops and single-GPU applications
| Property | Value |
|---|---|
| Parameters | 24B (2B active) |
| Context Length | 32K tokens |
| Architecture | LFM2 (MoE) |
uv pip install "vllm>=0.15.1"
uv pip install "transformers>=5.1.0"
from vllm import LLM, SamplingParams
llm = LLM(model="LiquidAI/LFM2-24B-A2B")
sampling_params = SamplingParams(temperature=0.1, top_k=50, repetition_penalty=1.05, max_tokens=512)
output = llm.chat("What is machine learning?", sampling_params)
print(output[0].outputs[0].text)
Was this page helpful?