kreuzberg 4.6.1

High-performance document intelligence library for Rust. Extract text, metadata, and structured data from PDFs, Office documents, images, and 88+ formats with async/sync APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Language family modules for stopword loading.
//!
//! Stopwords are organized by language family for easier maintenance
//! and navigation. Each module handles loading stopwords for related languages.

pub(super) mod asian;
pub(super) mod germanic;
pub(super) mod other;
pub(super) mod romance;
pub(super) mod slavic;