← Back to models
Lfm2.5 1.2B Thinking
Text GenerationLiquid LFM2.5 1.2B Thinking - hybrid conv+attention reasoning LLM optimized for edge deployment (fast CPU inference, low memory)
Integration
main.rs
use xybrid_sdk::{Xybrid, Envelope};
// Load the LLM
let model = Xybrid::model("lfm2.5-1.2b-thinking").load()?;
// Run text generation
let result = model.run(&Envelope::text("Explain quantum computing in simple terms."))?;
println!("{}", result.text.unwrap());