Skip to main content

Qwen35ConfigSource

Type Alias Qwen35ConfigSource 

Source
pub type Qwen35ConfigSource = ConfigSource<Qwen35Config>;
Expand description

Source for the Qwen3.5 / 3.6 config. Mirrors Qwen3ConfigSource so callers using Qwen35RunnerBuilder have the same shape as Qwen3RunnerBuilder (PLAN.md M1).

JsonFile and Explicit are wired into the future safetensors load path (catalog rows: qwen35-{4b,9b,27b}-hauhau-aggressive). Until the safetensors load lands, build() errors with a clear M1 follow-up message when these variants are used. Alias of rlx_runtime::ConfigSource<Qwen35Config>. JsonFile / Explicit variants are wired into the future safetensors load path (catalog rows: qwen35-{4b,9b,27b}-hauhau-aggressive). Until that path lands, build() errors with a clear M1 follow-up message when these variants are used.

Aliased Type§

pub enum Qwen35ConfigSource {
    Embedded,
    JsonFile(PathBuf),
    Explicit(Qwen35Config),
}

Variants§

§

Embedded

Read from GGUF metadata.

§

JsonFile(PathBuf)

Read from a HuggingFace config.json at this path.

§

Explicit(Qwen35Config)

Use the supplied config object directly.