llama_core/metadata/
mod.rs1pub mod ggml;
4pub mod piper;
5#[cfg(feature = "whisper")]
6#[cfg_attr(docsrs, doc(cfg(feature = "whisper")))]
7pub mod whisper;
8
9pub trait BaseMetadata {
11 fn model_name(&self) -> &str;
12 fn model_alias(&self) -> &str;
13}