llama_core/metadata/
mod.rs

1//! Define the types for model metadata.
2
3pub mod ggml;
4pub mod piper;
5#[cfg(feature = "whisper")]
6#[cfg_attr(docsrs, doc(cfg(feature = "whisper")))]
7pub mod whisper;
8
9/// Base metadata trait
10pub trait BaseMetadata {
11    fn model_name(&self) -> &str;
12    fn model_alias(&self) -> &str;
13}