#[non_exhaustive]pub enum EmbeddingInput {
Text(String),
TextArray(Vec<String>),
TokenArray(Vec<f64>),
TokenArrayBatch(Vec<Vec<f64>>),
MultimodalArray(Vec<EmbeddingMultimodalInput>),
}Expand description
Embedding request input variants.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Text(String)
TextArray(Vec<String>)
TokenArray(Vec<f64>)
TokenArrayBatch(Vec<Vec<f64>>)
MultimodalArray(Vec<EmbeddingMultimodalInput>)
Trait Implementations§
Source§impl Clone for EmbeddingInput
impl Clone for EmbeddingInput
Source§fn clone(&self) -> EmbeddingInput
fn clone(&self) -> EmbeddingInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EmbeddingInput
impl Debug for EmbeddingInput
Source§impl<'de> Deserialize<'de> for EmbeddingInput
impl<'de> Deserialize<'de> for EmbeddingInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 From<&str> for EmbeddingInput
impl From<&str> for EmbeddingInput
Source§impl From<String> for EmbeddingInput
impl From<String> for EmbeddingInput
Source§impl From<Vec<EmbeddingMultimodalInput>> for EmbeddingInput
impl From<Vec<EmbeddingMultimodalInput>> for EmbeddingInput
Source§fn from(value: Vec<EmbeddingMultimodalInput>) -> Self
fn from(value: Vec<EmbeddingMultimodalInput>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EmbeddingInput
impl RefUnwindSafe for EmbeddingInput
impl Send for EmbeddingInput
impl Sync for EmbeddingInput
impl Unpin for EmbeddingInput
impl UnsafeUnpin for EmbeddingInput
impl UnwindSafe for EmbeddingInput
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