rlx-models-core 0.2.1

Shared config, weight loading, and compile helpers for RLX model crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
// RLX — versatile ML compiler + runtime.
// Copyright (C) 2026 Eugene Hauptmann, Nataliya Kosmyna.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 3.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

//! Shared GGUF helpers for LM runners (architecture checks, path resolution).

use anyhow::{Context, Result, bail};
use rlx_gguf::{GgufFile, MetaValue};
use std::path::{Path, PathBuf};

/// LM families in this workspace that load `.gguf` weights.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum GgufModelFamily {
    Qwen3,
    Qwen35,
    Llama32,
    Gemma,
    /// LiquidAI LFM2.5 text variants (`lfm2` / `lfm` / `lfm25` / `lfm2_5`).
    Lfm,
}

impl GgufModelFamily {
    pub fn cli_name(self) -> &'static str {
        match self {
            Self::Qwen3 => "rlx-qwen3",
            Self::Qwen35 => "rlx-qwen35",
            Self::Llama32 => "rlx-llama32",
            Self::Gemma => "rlx-gemma",
            Self::Lfm => "rlx-lfm",
        }
    }

    /// Short name this family registers as with [`register_cli`] in
    /// `rlx_run` (e.g. `"qwen3"`, `"qwen35"`). Used by `auto_runner` to
    /// look up a `ModelRunner` in the registry.
    pub fn runner_name(self) -> &'static str {
        match self {
            Self::Qwen3 => "qwen3",
            Self::Qwen35 => "qwen35",
            Self::Llama32 => "llama32",
            Self::Gemma => "gemma",
            Self::Lfm => "lfm",
        }
    }

    pub fn runner_hint(self) -> &'static str {
        match self {
            Self::Qwen3 => "`rlx_models::Qwen3Runner::builder()...build()`",
            Self::Qwen35 => "`rlx_models::Qwen35Runner::builder()...build()`",
            Self::Llama32 => "`rlx_models::Llama32Runner::builder()...build()`",
            Self::Gemma => "`rlx_models::GemmaRunner::builder()...build()`",
            Self::Lfm => "`rlx_lfm::LfmRunner::builder()...build()`",
        }
    }

    fn accepts_arch(self, arch: &str) -> bool {
        match self {
            // Qwen3 family accepts qwen2 (handled via attention_bias +
            // qk_norm flags in qwen3_cfg_from_gguf), plus the qwen3
            // tags. qwen25 / qwen2_5 (Qwen 2.5 / 2.5.1) ship as the
            // `qwen2` arch tag in llama.cpp; we also accept the
            // explicit short tags for safetensors sidecars that name
            // them differently. Used by rlx-omnicoder which delegates
            // here. PLAN.md M4.
            Self::Qwen3 => matches!(arch, "qwen3" | "qwen2" | "qwen25" | "qwen2_5"),
            // Qwen3.6 reuses the Qwen3.5 trunk; `Qwen35Config::from_gguf`
            // reads its metadata keys under the `qwen36.*` prefix. Routes
            // through the same runner. PLAN.md M1.
            Self::Qwen35 => matches!(arch, "qwen35" | "qwen35moe" | "qwen36" | "qwen36moe"),
            // Llama32 family accepts the Llama-shaped M4 stub archs
            // (`mistral3`/`mistral4`, `phi3`, `granite`, `command-r`/`cohere2`)
            // so the per-family stub wrappers in
            // `crates/rlx-{mistral,phi,granite,cohere}` can delegate
            // through it. The per-arch *quality* deltas (sliding window,
            // attention.scale, parallel_residual, etc.) are PLAN.md M4
            // follow-up — runner will produce SOME output but it may
            // not match the upstream reference yet.
            // Only `llama` is parity-tested today. The other arch
            // stubs need per-arch tensor-name remap + quality deltas;
            // tracked as M4 follow-up. accepts_arch is checked late by
            // the per-family runner — keeping it lenient lets the
            // per-family stub crates delegate here for compile-only
            // quick-check tests, but `auto_runner` only routes plain `llama`.
            Self::Llama32 => matches!(
                arch,
                "llama"
                    | "mistral3"
                    | "mistral4"
                    | "phi3"
                    | "granite"
                    | "granitemoe"
                    | "granitehybrid"
                    | "command-r"
                    | "cohere2"
            ),
            // Gemma 3 / 3n route through the same family — share the V3
            // layer style, RoPE base, and 4-norm sandwich already wired
            // in `rlx-gemma`. Gemma 4 (always MoE) stays out until the
            // expert routing path is verified end-to-end.
            Self::Gemma => matches!(arch, "gemma" | "gemma2" | "gemma3" | "gemma3n"),
            Self::Lfm => matches!(arch, "lfm2" | "lfm" | "lfm25" | "lfm2_5"),
        }
    }
}

/// `general.architecture` string from GGUF metadata, if present.
pub fn gguf_architecture_str(file: &GgufFile) -> Option<&str> {
    file.metadata
        .get("general.architecture")
        .and_then(MetaValue::as_str)
}

/// Rough F32 dequant footprint (every tensor × 4 bytes).
pub fn gguf_f32_bytes_estimate(file: &GgufFile) -> u64 {
    file.tensors
        .values()
        .map(|t| (t.n_elements() as u64) * 4)
        .sum()
}

/// Ensure a GGUF file's `general.architecture` is in `allowed` (call from model runners, not the loader).
pub fn gguf_validate_arch(path: &Path, allowed: &[&str]) -> Result<()> {
    let arch = gguf_architecture_from_path(path)?;
    if allowed.contains(&arch.as_str()) {
        return Ok(());
    }
    bail!(
        "{path:?}: GGUF architecture `{arch}` not in [{}]",
        allowed.join(", ")
    );
}

/// `general.architecture` for a GGUF file on disk.
pub fn gguf_architecture_from_path(path: &Path) -> Result<String> {
    let raw = GgufFile::from_path(path).with_context(|| format!("opening GGUF {path:?}"))?;
    Ok(gguf_architecture_str(&raw).unwrap_or("unknown").to_string())
}

/// User-facing hint when a runner only accepts safetensors but a GGUF path was given.
pub fn gguf_safetensors_only_hint(runner: &str, path: &Path, arch: &str) -> String {
    let mut msg = format!(
        "{runner}: {path:?} is GGUF (architecture `{arch}`); this runner expects safetensors"
    );
    if crate::gguf_config::is_embed_gguf_arch(arch) {
        msg.push_str(". Load embedding GGUF with `rlx-embed` or `RlxEmbed::from_weights`");
    } else if crate::gguf_config::is_flux_gguf_arch(arch) {
        msg.push_str(
            ". Load FLUX denoiser GGUF with `rlx-flux2` (`Flux2Runner::builder().weights(path)`) \
             — e.g. unsloth/FLUX.2-klein-9B-GGUF; VAE/text encoder stay separate safetensors",
        );
    } else if crate::gguf_config::is_dinov2_gguf_arch(arch) {
        msg.push_str(
            ". Load DINOv2 GGUF with `rlx-dinov2` (`DinoV2Runner::builder().weights(path)`)",
        );
    } else if crate::gguf_config::is_sam3_gguf_arch(arch) {
        msg.push_str(". Load SAM3 GGUF with `rlx-sam3` (`Sam3::from_checkpoint_on`)");
    } else if crate::gguf_config::is_sam2_gguf_arch(arch) {
        msg.push_str(". Load SAM2 GGUF with `rlx-sam2`");
    } else if crate::gguf_config::is_sam_gguf_arch(arch) {
        msg.push_str(". Load SAM / MobileSAM GGUF with `rlx-sam`");
    } else if crate::gguf_config::is_vjepa2_gguf_arch(arch) {
        msg.push_str(". Load V-JEPA2 GGUF with `rlx-vjepa2`");
    } else if crate::gguf_config::is_w2v_bert_gguf_arch(arch) {
        msg.push_str(". Load with `rlx-wav2vec2-bert` (sidecar `config.json` still required)");
    } else if let Some(fam) = gguf_family_for_arch(arch) {
        msg.push_str(&format!(
            ". Use `{}` ({}) instead",
            fam.cli_name(),
            fam.runner_hint()
        ));
    } else {
        msg.push_str(". See README Status → Weights for GGUF coverage per family");
    }
    msg
}

/// Map a GGUF architecture tag to the runner family that should load it.
pub fn gguf_family_for_arch(arch: &str) -> Option<GgufModelFamily> {
    match arch {
        "qwen3" | "qwen2" | "qwen25" | "qwen2_5" => Some(GgufModelFamily::Qwen3),
        "qwen35" | "qwen35moe" | "qwen36" | "qwen36moe" => Some(GgufModelFamily::Qwen35),
        // Only the plain `llama` arch tag is fully wired today. The
        // other Llama-shaped arches (mistral3/4, phi3/4, granite*,
        // command-r/cohere2, bonsai, omnicoder) need per-arch tensor-
        // name remap in `Llama32Weights::from_loader` before they can
        // flow through `auto_runner`. Tracked in M4.
        "llama" => Some(GgufModelFamily::Llama32),
        "gemma" | "gemma2" | "gemma3" | "gemma3n" => Some(GgufModelFamily::Gemma),
        "lfm2" | "lfm" | "lfm25" | "lfm2_5" => Some(GgufModelFamily::Lfm),
        _ => None,
    }
}

/// Open the file and ensure `general.architecture` matches `expected`.
pub fn assert_gguf_family(path: &Path, expected: GgufModelFamily) -> Result<GgufFile> {
    let raw = GgufFile::from_path(path).with_context(|| format!("opening GGUF {path:?}"))?;
    let arch = gguf_architecture_str(&raw).unwrap_or("unknown");
    if expected.accepts_arch(arch) {
        return Ok(raw);
    }
    if let Some(actual) = gguf_family_for_arch(arch) {
        bail!(
            "{path:?} is a {arch} GGUF (family {actual:?}). Use `{}` or {} instead.",
            actual.cli_name(),
            actual.runner_hint()
        );
    }
    bail!(
        "{path:?} has general.architecture={arch:?}; this runner expects a {} GGUF",
        expected.cli_name()
    );
}

/// Default quant substring when resolving a directory of `.gguf` files (e.g. unsloth layouts).
pub const DEFAULT_GGUF_PREFER_SUBSTR: &str = "Q4_K_M";

/// Options for [`resolve_weights_file_with_options`].
#[derive(Debug, Clone, Default)]
pub struct ResolveWeightsOptions<'a> {
    /// Prefer a `.gguf` whose file name contains this substring (e.g. `Q4_K_M`).
    pub prefer_gguf_substring: Option<&'a str>,
    /// Pick the N-th `.gguf` after sorting paths (0-based).
    pub gguf_index: Option<usize>,
}

impl<'a> ResolveWeightsOptions<'a> {
    pub fn prefer_substring(mut self, sub: &'a str) -> Self {
        self.prefer_gguf_substring = Some(sub);
        self
    }

    pub fn index(mut self, idx: usize) -> Self {
        self.gguf_index = Some(idx);
        self
    }
}

/// Resolve `--weights` to a single file: pass-through for files, or pick one
/// `.gguf` / `model.safetensors` inside a directory.
pub fn resolve_weights_file(path: &Path) -> Result<PathBuf> {
    resolve_weights_file_with_options(path, &ResolveWeightsOptions::default())
}

/// Resolve with optional GGUF file selection inside a directory.
pub fn resolve_weights_file_with_options(
    path: &Path,
    opts: &ResolveWeightsOptions<'_>,
) -> Result<PathBuf> {
    if path.is_file() {
        return Ok(path.to_path_buf());
    }
    if !path.is_dir() {
        bail!("weights path not found: {path:?}");
    }
    let mut ggufs = list_gguf_files_in_dir(path)?;
    if let Some(sub) = opts.prefer_gguf_substring {
        let preferred: Vec<_> = ggufs
            .iter()
            .filter(|p| {
                p.file_name()
                    .and_then(|s| s.to_str())
                    .is_some_and(|n| n.contains(sub))
            })
            .cloned()
            .collect();
        if !preferred.is_empty() {
            ggufs = preferred;
        }
    }
    match ggufs.len() {
        1 => return Ok(ggufs[0].clone()),
        n if n > 1 => {
            if let Some(idx) = opts.gguf_index {
                return ggufs.get(idx).cloned().ok_or_else(|| {
                    anyhow::anyhow!(
                        "gguf_index={idx} out of range; directory {path:?} has {n} .gguf files"
                    )
                });
            }
            let listing: Vec<String> = ggufs
                .iter()
                .map(|p| format!("  - {}", p.display()))
                .collect();
            bail!(
                "directory {path:?} contains {n} .gguf files; pass the exact file path, \
                 use LoadOpts::map().prefer_q4_k_m() / prefer_substring(\"Q4_K_M\"), \
                 gguf_index(0), or run `rlx-inspect {path:?} --prefer Q4_K_M`:\n{}",
                listing.join("\n")
            );
        }
        _ => {}
    }
    let st = path.join("model.safetensors");
    if st.is_file() {
        return Ok(st);
    }
    bail!(
        "directory {path:?} has no .gguf file and no model.safetensors; \
         pass a .gguf or .safetensors path"
    );
}

/// Sorted `.gguf` paths in a directory (non-recursive).
pub fn list_gguf_files_in_dir(dir: &Path) -> Result<Vec<PathBuf>> {
    let mut ggufs = Vec::new();
    for entry in std::fs::read_dir(dir).with_context(|| format!("reading dir {dir:?}"))? {
        let entry = entry?;
        let p = entry.path();
        if p.extension().and_then(|s| s.to_str()) == Some("gguf") && p.is_file() {
            ggufs.push(p);
        }
    }
    ggufs.sort();
    Ok(ggufs)
}

/// Other parts of the same multi-file GGUF split in `path`'s directory (sorted by `split.no`).
pub fn gguf_split_siblings(path: &Path) -> Result<Option<Vec<PathBuf>>> {
    let raw = GgufFile::from_path(path).with_context(|| format!("opening GGUF {path:?}"))?;
    let count = raw
        .metadata
        .get("split.count")
        .and_then(MetaValue::as_u32)
        .unwrap_or(1);
    if count <= 1 {
        return Ok(None);
    }
    let dir = path.parent().unwrap_or_else(|| Path::new("."));
    let mut parts: Vec<(u32, PathBuf)> = Vec::new();
    for candidate in list_gguf_files_in_dir(dir)? {
        let other = GgufFile::from_path(&candidate)
            .with_context(|| format!("opening split candidate {candidate:?}"))?;
        let other_count = other
            .metadata
            .get("split.count")
            .and_then(MetaValue::as_u32)
            .unwrap_or(1);
        if other_count != count {
            continue;
        }
        let no = other
            .metadata
            .get("split.no")
            .and_then(MetaValue::as_u32)
            .unwrap_or(0);
        parts.push((no, candidate));
    }
    parts.sort_by_key(|(no, _)| *no);
    parts.dedup_by_key(|(no, _)| *no);
    Ok(Some(parts.into_iter().map(|(_, p)| p).collect()))
}

/// Open a GGUF file, merging multi-part splits when all siblings are present in the directory.
pub fn load_gguf_file(path: &Path) -> Result<GgufFile> {
    let raw = GgufFile::from_path(path).with_context(|| format!("opening GGUF {path:?}"))?;
    let count = raw
        .metadata
        .get("split.count")
        .and_then(MetaValue::as_u32)
        .unwrap_or(1);
    if count <= 1 {
        return Ok(raw);
    }
    let siblings = gguf_split_siblings(path)?;
    match siblings {
        Some(parts) if parts.len() as u32 == count => {
            eprintln!(
                "[rlx-core] merging {count} GGUF split parts from {:?}",
                path.parent().unwrap_or(path)
            );
            GgufFile::from_split_paths(&parts)
        }
        _ => {
            let hint = gguf_split_hint(path)?.unwrap_or_else(|| {
                format!("{path:?} is a split GGUF but sibling parts are missing")
            });
            bail!("{hint}");
        }
    }
}

/// If the file is a multi-part GGUF split, return an error hint when merge is not possible.
pub fn gguf_split_hint(path: &Path) -> Result<Option<String>> {
    let raw = GgufFile::from_path(path).with_context(|| format!("opening GGUF {path:?}"))?;
    let count = raw
        .metadata
        .get("split.count")
        .and_then(MetaValue::as_u32)
        .unwrap_or(1);
    if count <= 1 {
        return Ok(None);
    }
    let no = raw
        .metadata
        .get("split.no")
        .and_then(MetaValue::as_u32)
        .unwrap_or(0);
    let mut msg = format!(
        "{path:?} is part {no} of a {count}-file GGUF split; \
         place all parts in the same directory (auto-merge) or use a single-file quant"
    );
    if let Some(siblings) = gguf_split_siblings(path)? {
        msg.push_str("\nSplit parts in this directory:");
        for (i, p) in siblings.iter().enumerate() {
            msg.push_str(&format!("\n  [{i}] {}", p.display()));
        }
    }
    Ok(Some(msg))
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn embed_arch_list_includes_bert_and_nomic() {
        assert!(crate::gguf_config::is_embed_gguf_arch("bert"));
        assert!(crate::gguf_config::is_embed_gguf_arch("nomic-bert"));
        assert!(!crate::gguf_config::is_embed_gguf_arch("sam3"));
    }

    #[test]
    fn vision_arch_tags() {
        assert!(crate::gguf_config::is_sam3_gguf_arch("sam3"));
        assert!(crate::gguf_config::is_dinov2_gguf_arch("dinov2"));
        assert!(crate::gguf_config::is_sam_gguf_arch("mobile-sam"));
        assert!(crate::gguf_config::is_w2v_bert_gguf_arch("wav2vec2"));
        assert!(!crate::gguf_config::is_sam3_gguf_arch("dinov2"));
    }

    #[test]
    fn gguf_validate_arch_accepts_and_rejects() {
        let mut buf: Vec<u8> = Vec::new();
        buf.extend_from_slice(&rlx_gguf::GGUF_MAGIC.to_le_bytes());
        buf.extend_from_slice(&3u32.to_le_bytes());
        buf.extend_from_slice(&1u64.to_le_bytes());
        buf.extend_from_slice(&1u64.to_le_bytes());
        let write_string = |buf: &mut Vec<u8>, k: &str, v: &str| {
            buf.extend_from_slice(&(k.len() as u64).to_le_bytes());
            buf.extend_from_slice(k.as_bytes());
            buf.extend_from_slice(&8u32.to_le_bytes());
            buf.extend_from_slice(&(v.len() as u64).to_le_bytes());
            buf.extend_from_slice(v.as_bytes());
        };
        write_string(&mut buf, "general.architecture", "dinov2");
        let write_tensor = |buf: &mut Vec<u8>, name: &str, shape: &[usize], off: u64| {
            buf.extend_from_slice(&(name.len() as u64).to_le_bytes());
            buf.extend_from_slice(name.as_bytes());
            buf.extend_from_slice(&(shape.len() as u32).to_le_bytes());
            for &d in shape {
                buf.extend_from_slice(&(d as u64).to_le_bytes());
            }
            buf.extend_from_slice(&(rlx_gguf::GgmlType::F32 as u32).to_le_bytes());
            buf.extend_from_slice(&off.to_le_bytes());
        };
        write_tensor(&mut buf, "w", &[4], 0);
        while !buf
            .len()
            .is_multiple_of(rlx_gguf::DEFAULT_ALIGNMENT as usize)
        {
            buf.push(0);
        }
        for _ in 0..4 {
            buf.extend_from_slice(&1.0f32.to_le_bytes());
        }
        let path = std::env::temp_dir().join("rlx_gguf_validate_arch_test.gguf");
        std::fs::write(&path, &buf).unwrap();
        gguf_validate_arch(&path, crate::gguf_config::DINOV2_GGUF_ARCHES).expect("dinov2 ok");
        let err = gguf_validate_arch(&path, crate::gguf_config::SAM3_GGUF_ARCHES)
            .expect_err("wrong family");
        assert!(format!("{err:#}").contains("dinov2"));
        std::fs::remove_file(&path).ok();
    }

    #[test]
    fn family_for_arch_maps_known_tags() {
        assert_eq!(
            gguf_family_for_arch("qwen35"),
            Some(GgufModelFamily::Qwen35)
        );
        assert_eq!(
            gguf_family_for_arch("qwen35moe"),
            Some(GgufModelFamily::Qwen35)
        );
        assert_eq!(
            gguf_family_for_arch("qwen36"),
            Some(GgufModelFamily::Qwen35)
        );
        assert_eq!(
            gguf_family_for_arch("qwen36moe"),
            Some(GgufModelFamily::Qwen35)
        );
        assert_eq!(
            gguf_family_for_arch("llama"),
            Some(GgufModelFamily::Llama32)
        );
        assert_eq!(gguf_family_for_arch("gemma"), Some(GgufModelFamily::Gemma));
        assert_eq!(gguf_family_for_arch("gemma2"), Some(GgufModelFamily::Gemma));
        assert!(gguf_family_for_arch("clip").is_none());
    }
}