← Back to models
Lfm2.5 230M
Text GenerationLiquid LFM2.5 230M - smallest hybrid conv+attention LLM optimized for edge deployment (9 languages, tool calling, fast CPU inference)
Integration
main.rs
use xybrid_sdk::{Xybrid, Envelope};
// Load the LLM
let model = Xybrid::model("lfm2.5-230m").load()?;
// Run text generation
let result = model.run(&Envelope::text("Explain quantum computing in simple terms."))?;
println!("{}", result.text.unwrap());