--- library_name: mlx license: other license_name: lfm1.0 license_link: LICENSE language: - en - ar - zh - fr - de - ja - ko - es - pt pipeline_tag: text-generation tags: - liquid - lfm2.5 - edge - moe - mlx base_model: LiquidAI/LFM2.5-8B-A1B ---
Liquid AI
Try LFMDocsLEAPDiscord
# LiquidAI/LFM2.5-8B-A1B-MLX-4bit This model [LiquidAI/LFM2.5-8B-A1B-MLX-4bit](https://huggingface.co/LiquidAI/LFM2.5-8B-A1B-MLX-4bit) was converted to MLX format from [LiquidAI/LFM2.5-8B-A1B](https://huggingface.co/LiquidAI/LFM2.5-8B-A1B) using mlx-lm version **0.31.3**. ## About this quantization Quantized to 4 bits per weight (group size 64, affine mode). MoE routing gates retained at 8 bits. For base model details, capabilities, and recommended generation settings, see the [original model card](https://huggingface.co/LiquidAI/LFM2.5-8B-A1B). ## Use with mlx ```bash pip install mlx-lm ``` ```python from mlx_lm import load, generate from mlx_lm.sample_utils import make_sampler, make_logits_processors model, tokenizer = load("LiquidAI/LFM2.5-8B-A1B-MLX-4bit") prompt = "What is C. elegans?" if tokenizer.chat_template is not None: messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) sampler = make_sampler(temp=0.2, top_k=80) logits_processors = make_logits_processors(repetition_penalty=1.05) response = generate( model, tokenizer, prompt=prompt, sampler=sampler, logits_processors=logits_processors, verbose=True, ) ``` ### Chat Template LFM2.5 uses a ChatML-like format. See the [Chat Template documentation](https://docs.liquid.ai/lfm/key-concepts/chat-template) for details. Example: ``` <|startoftext|><|im_start|>system You are a helpful assistant trained by Liquid AI.<|im_end|> <|im_start|>user What is C. elegans?<|im_end|> <|im_start|>assistant ``` Because LFM2.5-8B-A1B is a reasoning model, assistant turns contain an explicit chain of thought before the final answer. `tokenizer.apply_chat_template()` formats messages automatically. ### Tool Use LFM2.5 supports function calling. Pass tools to `tokenizer.apply_chat_template(..., tools=...)`. See the [Tool Use documentation](https://docs.liquid.ai/lfm/key-concepts/tool-use) for the full guide. ## License LFM Open License v1.0 — see the [LICENSE](LICENSE) file or the [original model card](https://huggingface.co/LiquidAI/LFM2.5-8B-A1B) for terms. ## Citation ```bibtex @article{liquidAI20268BA1B, author = {Liquid AI}, title = {LFM2.5-8B-A1B: Personal Assistant On Your Laptop}, journal = {Liquid AI Blog}, year = {2026}, note = {www.liquid.ai/blog/lfm2-5-8b-a1b}, } ``` ```bibtex @article{liquidai2025lfm2, title = {LFM2 Technical Report}, author = {Liquid AI}, journal = {arXiv preprint arXiv:2511.23404}, year = {2025} } ```