pub enum EmbeddingInput {
Text(String),
TextArray(Vec<String>),
}Expand description
Input type for embeddings
Supports single text, multiple texts, or token arrays.
Variants§
Implementations§
Source§impl EmbeddingInput
impl EmbeddingInput
Sourcepub fn texts(texts: impl IntoIterator<Item = impl Into<String>>) -> Self
pub fn texts(texts: impl IntoIterator<Item = impl Into<String>>) -> Self
Create from multiple texts
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 · 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
Auto Trait Implementations§
impl Freeze for EmbeddingInput
impl RefUnwindSafe for EmbeddingInput
impl Send for EmbeddingInput
impl Sync for EmbeddingInput
impl Unpin 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
Source§impl<T> BudgetAwareRouting for T
impl<T> BudgetAwareRouting for T
Source§fn filter_by_budget(
&self,
providers: Vec<String>,
budget_router: &BudgetAwareRouter,
) -> Vec<String>
fn filter_by_budget( &self, providers: Vec<String>, budget_router: &BudgetAwareRouter, ) -> Vec<String>
Filter providers based on budget availability
Source§impl<T> CacheValue for T
impl<T> CacheValue for T
Source§fn from_bytes(bytes: &[u8]) -> Result<T, CacheError>
fn from_bytes(bytes: &[u8]) -> Result<T, CacheError>
Deserialize from bytes
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Injectable for T
impl<T> Injectable for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.