← Back to models

Lfm2.5 1.2B Instruct

Text Generation

Liquid LFM2.5 1.2B Instruct - hybrid conv+attention LLM optimized for edge deployment (agentic tasks, data extraction, RAG, tool calling)

Integration

main.rs
use xybrid_sdk::{Xybrid, Envelope};

// Load the LLM
let model = Xybrid::model("lfm2.5-1.2b-instruct").load()?;

// Run text generation
let result = model.run(&Envelope::text("Explain quantum computing in simple terms."))?;

println!("{}", result.text.unwrap());