pub type Llama32ConfigSource = ConfigSource<Llama32Config>;Expand description
Where to load the Llama 3.2 config from.
Type alias of the shared rlx_runtime::ConfigSource<T> so the
per-family *ConfigSource enums no longer duplicate the same
Embedded | JsonFile | Explicit(T) shape. The variant constructors
(Llama32ConfigSource::Embedded, etc.) keep working because
type-alias resolution expands the path through the generic enum.
Aliased Type§
pub enum Llama32ConfigSource {
Embedded,
JsonFile(PathBuf),
Explicit(Llama32Config),
}Variants§
Embedded
Read from GGUF metadata.
JsonFile(PathBuf)
Read from a HuggingFace config.json at this path.
Explicit(Llama32Config)
Use the supplied config object directly.