pub enum EmbeddingInput {
Text(String),
TextArray(Vec<String>),
Tokens(Vec<i32>),
TokensBatch(Vec<Vec<i32>>),
}Expand description
Types of input supported by the embeddings endpoint.
Variants§
Text(String)
A single string to embed.
TextArray(Vec<String>)
Multiple strings to embed in one request.
Tokens(Vec<i32>)
A single tokenized input represented as integers.
TokensBatch(Vec<Vec<i32>>)
Multiple tokenized inputs.
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 PartialEq for EmbeddingInput
impl PartialEq for EmbeddingInput
impl Eq for EmbeddingInput
impl StructuralPartialEq 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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.