← Back to models
Lfm2 Vl 450M
vision-languageLiquid LFM2-VL 450M compact vision-language model for edge inference.
Integration
main.rs
use xybrid_sdk::{Xybrid, Envelope};
// Load the LLM
let model = Xybrid::model("lfm2-vl-450m").load()?;
// Run text generation
let result = model.run(&Envelope::text("Explain quantum computing in simple terms."))?;
println!("{}", result.text.unwrap());