fastembed 5.13.2

Library for generating vector embeddings, reranking locally.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Text embedding module, containing the main struct [TextEmbedding] and its
//! initialization options.

// Constants.
const DEFAULT_BATCH_SIZE: usize = 256;
const DEFAULT_MAX_LENGTH: usize = 512;

// Output precedence and transforming functions.
pub mod output;

// Initialization options.
mod init;
pub use init::*;

// The implementation of the embedding models.
mod r#impl;