Skip to main content

Qwen3ConfigSource

Type Alias Qwen3ConfigSource 

Source
pub type Qwen3ConfigSource = ConfigSource<Qwen3Config>;
Expand description

Source for the qwen3 config. Alias of the shared rlx_runtime::ConfigSource<T>:

  • Embedded — read from GGUF metadata.
  • JsonFile(PathBuf) — read from a HuggingFace config.json.
  • Explicit(Qwen3Config) — caller provides the config directly.

The builder picks one automatically when not set; the caller can override.

Aliased Type§

pub enum Qwen3ConfigSource {
    Embedded,
    JsonFile(PathBuf),
    Explicit(Qwen3Config),
}

Variants§

§

Embedded

Read from GGUF metadata.

§

JsonFile(PathBuf)

Read from a HuggingFace config.json at this path.

§

Explicit(Qwen3Config)

Use the supplied config object directly.