fastembed 4.4.0

Rust implementation of https://github.com/qdrant/fastembed
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Enum for quantization mode.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum QuantizationMode {
    None,
    Static,
    Dynamic,
}

impl Default for QuantizationMode {
    fn default() -> Self {
        Self::None
    }
}