kreuzberg 4.8.2

High-performance document intelligence library for Rust. Extract text, metadata, and structured data from PDFs, Office documents, images, and 91+ formats and 248 programming languages via tree-sitter code intelligence with async/sync APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! LLM integration via liter-llm.
//!
//! This module provides VLM OCR, VLM embeddings, and structured extraction
//! capabilities using liter-llm as the backend.

#[cfg(feature = "liter-llm")]
pub mod client;
#[cfg(feature = "liter-llm")]
pub mod prompts;
#[cfg(feature = "liter-llm")]
pub mod structured;
#[cfg(feature = "liter-llm")]
pub mod vlm_embeddings;
#[cfg(feature = "liter-llm")]
pub mod vlm_ocr;