Specifications
| Property | Value |
|---|---|
| Parameters | 1.2B |
| Context Length | 32K tokens |
| Task | Tool Calling |
| Status | Deprecated |
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
🚀 New: LFM2.5-VL-450M — our smallest vision model is now available! Learn more →
1.2B parameter model for tool calling (deprecated)
| Property | Value |
|---|---|
| Parameters | 1.2B |
| Context Length | 32K tokens |
| Task | Tool Calling |
| Status | Deprecated |
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "LiquidAI/LFM2.5-1.2B-Instruct"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")
# See the Tool Use guide for complete examples
Was this page helpful?