fastembed 5.0.0

Library for generating vector embeddings, reranking locally.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::models::sparse::SparseModel;

const DEFAULT_BATCH_SIZE: usize = 256;
const DEFAULT_MAX_LENGTH: usize = 512;
const DEFAULT_EMBEDDING_MODEL: SparseModel = SparseModel::SPLADEPPV1;

mod init;
pub use init::*;

mod r#impl;