← Back to models

Qwen3.5 0.8B

Text Generation

Qwen 3.5 0.8B - Alibaba Cloud's lightweight multimodal LLM (text-only mode, 201 languages)

Integration

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

// Load the LLM
let model = Xybrid::model("qwen3.5-0.8b").load()?;

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

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