Enum Models

Source
pub enum Models {
Show 21 variants Gemini15ProExp0827, Gemini15FlashExp0827, Gemini15Flash8bExp0827, Gemini15Pro, Gemini2FlashExp, Gemini2Exp1206, Gemini15Flash, Gemini10Pro, Gemma2_2bIt, Gemma2_9bIt, Gemma2_27bIt, Gemini2Flash, Gemini2FlashLite, Gemini25ProPreview0325, Gemini25ProExp0325, Gemini25FlashPreview0417, Gemma3_1b, Gemma3_4b, Gemma3_12b, Gemma3_27b, Custom(String),
}
Expand description

Enum representing different Gemini API models.

This enum includes various versions of Gemini models, including experimental and stable versions. The default model is set to Gemini15Pro.

Variants§

§

Gemini15ProExp0827

👎Deprecated: Use custom model instead, if you need to use older models

Experimental Gemini 1.5 Pro model (version 0827)

§

Gemini15FlashExp0827

👎Deprecated: Use custom model instead, if you need to use older models

Experimental Gemini 1.5 Flash model (version 0827)

§

Gemini15Flash8bExp0827

👎Deprecated: Use custom model instead, if you need to use older models

Experimental Gemini 1.5 Flash 8B model (version 0827)

§

Gemini15Pro

👎Deprecated: Use custom model instead, if you need to use older models

Gemini 1.5 Pro model

§

Gemini2FlashExp

👎Deprecated: Use custom model instead, if you need to use older models

Default Gemini 2 Flash Experimental model

§

Gemini2Exp1206

👎Deprecated: Use custom model instead, if you need to use older models

Gemini 2 Experimental model

§

Gemini15Flash

👎Deprecated: Use custom model instead, if you need to use older models

Gemini 1.5 Flash model

§

Gemini10Pro

👎Deprecated: Use custom model instead, if you need to use older models

Gemini 1.0 Pro model

§

Gemma2_2bIt

👎Deprecated: Use custom model instead, if you need to use older models

Gemma 2 2B IT model

§

Gemma2_9bIt

👎Deprecated: Use custom model instead, if you need to use older models

Gemma 2 9B IT model

§

Gemma2_27bIt

👎Deprecated: Use custom model instead, if you need to use older models

Gemma 2 27B IT model

§

Gemini2Flash

§

Gemini2FlashLite

§

Gemini25ProPreview0325

§

Gemini25ProExp0325

§

Gemini25FlashPreview0417

§

Gemma3_1b

§

Gemma3_4b

§

Gemma3_12b

§

Gemma3_27b

§

Custom(String)

Custom model

Trait Implementations§

Source§

impl Clone for Models

Source§

fn clone(&self) -> Models

Returns a duplicate of the value. Read more
1.0.0 · Source§

const fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Models

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Models

Source§

fn default() -> Models

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Models

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for Models

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl ToString for Models

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more

Auto Trait Implementations§

§

impl Freeze for Models

§

impl RefUnwindSafe for Models

§

impl Send for Models

§

impl Sync for Models

§

impl Unpin for Models

§

impl UnwindSafe for Models

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T