pub enum EmbeddingModelType {
OllamaTextEmbeddingsInference(OllamaTextEmbeddingsInference),
}Variants§
OllamaTextEmbeddingsInference(OllamaTextEmbeddingsInference)
Implementations§
Source§impl EmbeddingModelType
impl EmbeddingModelType
pub fn from_string(s: &str) -> Result<Self, ZooEmbeddingError>
pub fn max_input_token_count(&self) -> usize
pub fn embedding_normalization_factor(&self) -> f32
pub fn vector_dimensions(&self) -> Result<usize, ZooEmbeddingError>
Trait Implementations§
Source§impl Clone for EmbeddingModelType
impl Clone for EmbeddingModelType
Source§fn clone(&self) -> EmbeddingModelType
fn clone(&self) -> EmbeddingModelType
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 EmbeddingModelType
impl Debug for EmbeddingModelType
Source§impl<'de> Deserialize<'de> for EmbeddingModelType
impl<'de> Deserialize<'de> for EmbeddingModelType
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 Display for EmbeddingModelType
impl Display for EmbeddingModelType
impl Eq for EmbeddingModelType
Source§impl Hash for EmbeddingModelType
impl Hash for EmbeddingModelType
Source§impl PartialEq for EmbeddingModelType
impl PartialEq for EmbeddingModelType
Source§fn eq(&self, other: &EmbeddingModelType) -> bool
fn eq(&self, other: &EmbeddingModelType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EmbeddingModelType
impl Serialize for EmbeddingModelType
impl StructuralPartialEq for EmbeddingModelType
Auto Trait Implementations§
impl Freeze for EmbeddingModelType
impl RefUnwindSafe for EmbeddingModelType
impl Send for EmbeddingModelType
impl Sync for EmbeddingModelType
impl Unpin for EmbeddingModelType
impl UnsafeUnpin for EmbeddingModelType
impl UnwindSafe for EmbeddingModelType
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.