pub enum CandleTextModel {
AllMiniLmL6V2,
BgeSmallEnV15,
BgeBaseEnV15,
}Expand description
Supported text embedding models.
Variants§
AllMiniLmL6V2
all-MiniLM-L6-v2: 384 dims, fastest, English-optimized
BgeSmallEnV15
BGE-small-en-v1.5: 384 dims, high quality English
BgeBaseEnV15
BGE-base-en-v1.5: 768 dimensions, higher quality English
Implementations§
Trait Implementations§
Source§impl Clone for CandleTextModel
impl Clone for CandleTextModel
Source§fn clone(&self) -> CandleTextModel
fn clone(&self) -> CandleTextModel
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 CandleTextModel
impl Debug for CandleTextModel
Source§impl Default for CandleTextModel
impl Default for CandleTextModel
Source§fn default() -> CandleTextModel
fn default() -> CandleTextModel
Returns the “default value” for a type. Read more
Source§impl PartialEq for CandleTextModel
impl PartialEq for CandleTextModel
impl Copy for CandleTextModel
impl Eq for CandleTextModel
impl StructuralPartialEq for CandleTextModel
Auto Trait Implementations§
impl Freeze for CandleTextModel
impl RefUnwindSafe for CandleTextModel
impl Send for CandleTextModel
impl Sync for CandleTextModel
impl Unpin for CandleTextModel
impl UnwindSafe for CandleTextModel
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more