fastembed 4.4.0

Rust implementation of https://github.com/qdrant/fastembed
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::RerankerModel;

const DEFAULT_RE_RANKER_MODEL: RerankerModel = RerankerModel::BGERerankerBase;
const DEFAULT_MAX_LENGTH: usize = 512;
const DEFAULT_BATCH_SIZE: usize = 256;

mod init;
pub use init::*;

mod r#impl;