pub enum Model {
Gpt35Turbo,
Gpt35Turbo0301,
Gpt4,
Gpt4_0314,
Gpt4_32k,
Gpt4_32k0314,
}
Expand description
gpt-3.5 and gpt-4 models that are supported by the OpenAI API.
Variants§
Gpt35Turbo
gpt-3.5-turbo model.
Gpt35Turbo0301
gpt-3.5-turbo-0301 model.
Gpt4
Gpt4_0314
Gpt4_32k
Gpt4_32k0314
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Model
impl RefUnwindSafe for Model
impl Send for Model
impl Sync for Model
impl Unpin for Model
impl UnwindSafe for Model
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