pub enum SupportedModels {
Llama321BInstruct(Option<String>),
Llama323BInstruct(Option<String>),
Mistral7BInstructV03(Option<String>),
Mixtral8x7BInstructV01(Option<String>),
Gemma22BInstruct(Option<String>),
Gemma27BInstruct(Option<String>),
Gemma29BInstruct(Option<String>),
}Variants§
Llama321BInstruct(Option<String>)
Llama323BInstruct(Option<String>)
Mistral7BInstructV03(Option<String>)
Mixtral8x7BInstructV01(Option<String>)
Gemma22BInstruct(Option<String>)
Gemma27BInstruct(Option<String>)
Gemma29BInstruct(Option<String>)
Trait Implementations§
Source§impl Clone for SupportedModels
impl Clone for SupportedModels
Source§fn clone(&self) -> SupportedModels
fn clone(&self) -> SupportedModels
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SupportedModels
impl Debug for SupportedModels
Source§impl FromStr for SupportedModels
impl FromStr for SupportedModels
Auto Trait Implementations§
impl Freeze for SupportedModels
impl RefUnwindSafe for SupportedModels
impl Send for SupportedModels
impl Sync for SupportedModels
impl Unpin for SupportedModels
impl UnwindSafe for SupportedModels
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more