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
// 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/>.
//! Convenience re-exports for `rlx-gemma` users.
//!
//! ```rust,ignore
//! use rlx_gemma::prelude::*;
//!
//! // Now you can reach for the most-used types without cherry-picking:
//! let cfg = GemmaConfig::from_file("/path/to/gemma-4-12b/config.json")?;
//! let mm = GemmaMultimodalConfig::from_file("/path/to/gemma-4-12b/config.json")?;
//! let runner = GemmaRunner::builder()
//! .weights("/path/to/gemma-4-12b/model.safetensors")
//! .device(Device::Metal)
//! .build()?;
//! ```
//!
//! Imports the minimum public surface area to drive every Gemma 4
//! workflow this crate supports: text inference, vision/audio
//! preprocessing, projector compilation, embedding fusion.
// ── Config + architecture detection ──────────────────────────────
pub use crate;
// ── Text inference ──────────────────────────────────────────────
pub use crateGemmaGenerator;
pub use crate;
// ── Multimodal config + preprocessing ────────────────────────────
pub use crate;
pub use crate;
// ── Multimodal runtime ──────────────────────────────────────────
pub use crate;
// ── Tokenizer (shared with rlx-qwen35) ──────────────────────────
pub use ;
// ── Devices + sampling (so callers don't need to import upstream)
pub use SampleOpts;
pub use Device;