← Back to models
Gemma3npc 1B
Text GenerationGemma3NPC 1B - Mobile-friendly NPC roleplay fine-tune of Gemma 3 1B for in-character game dialogue
Integration
main.rs
use xybrid_sdk::{Xybrid, Envelope};
// Load the LLM
let model = Xybrid::model("gemma3npc-1b").load()?;
// Run text generation
let result = model.run(&Envelope::text("Explain quantum computing in simple terms."))?;
println!("{}", result.text.unwrap());