Trait ModelListResponse

Source
pub trait ModelListResponse: Debug {
    // Required methods
    fn get_models(&self) -> Vec<String>;
    fn get_models_raw(&self) -> Vec<Box<dyn ModelListRawEntry>>;
    fn get_backend(&self) -> LLMBackend;
}

Required Methods§

Implementors§