Model reference · open weights
LFM2.5-ONNX is an open-weight language model from LiquidAI. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | LiquidAI |
|---|---|
| Type | Language models |
| Task | Text gen |
| Context | 125k tokens |
| Based on | LiquidAI/LFM2.5-230M |
| Released | 2026-06-15 |
| Popularity | 1k downloads / month |
| Licence | Commercial licence needed |
About
src="https://cdn-uploads.huggingface.co/production/uploads/61b8e2ba285851687028d395/2b08LKpev0DNEk6DlnWkY.png" alt="Liquid AI" style="width: 100%; max-width: 100%; height: auto; display: inline-block; margin-bottom: 0.5em; margin-top: 0.5em;" />
ONNX export of LFM2.5-230M for cross-platform inference.
LFM2.5 is a hybrid architecture combining multiplicative gates and short convolutions, optimized for edge deployment with fast inference on CPU, GPU, and NPU hardware.
| Precision | Size | Platform | Use Case |
|---|---|---|---|
| Q4 | ~200 MB | WebGPU, Server | Recommended for most uses (quantized embedding) |
| Q4F32 | ~390 MB | Server (CPU/GPU) | Q4 weights with FP32 embedding — higher quality |
| FP16 | ~455 MB | WebGPU, Server | Higher quality |
| Q8 | ~470 MB | Server only | Balance of quality and size |
Q4 or FP16 (Q4F32 and Q8 are not supported on WebGPU).Q4F32 keeps the embedding in FP32 for higher fidelity.The tied embedding / LM head is kept in FP32 across all quantized builds.
onnx/
├── model.onnx # FP32
├── model_fp16.onnx # FP16
├── model_q4.onnx # Q4, quantized embedding (WebGPU)
├── model_q4f32.onnx # Q4 weights, FP32 embedding (server)
└── model_q8.onnx # Q8
pip install onnxruntime transformers numpy huggingface_hub
# or, for GPU:
pip install onnxruntime-gpu transformers numpy huggingface_hub
from huggingface_hub import hf_hub_download
model_id = "LiquidAI/LFM2.5-230M-ONNX"
# Q4F32 recommended for server CPU/GPU; use model_q4.onnx for WebGPU.
hf_hub_download(model_id, "onnx/model_q4f32.onnx")
hf_hub_download(model_id, "onnx/model_q4f32.onnx_data")
import { pipeline } from "@huggingface/transformers";
const generator = await pipeline("text-generation", "LiquidAI/LFM2.5-230M-ONNX", {
device: "webgpu",
dtype: "q4", // or "fp16"
});
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys lfm2-5-onnx for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (lfm2-5-onnx below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"lfm2-5-onnx","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.