Kreuzberg Document Extraction
Kreuzberg is a high-performance document intelligence library with a Rust core and native bindings for Python, Node.js/TypeScript, Ruby, Go, Java, C#, PHP, and Elixir. It extracts text, tables, metadata, and images from 91+ file formats including PDF, Office documents, images (with OCR), HTML, email, archives, and academic formats.
Version note: This skill covers Kreuzberg v4, the legacy long-term-support line (critical bug and security fixes only, best-effort through the end of 2026). The current version is Xberg (v5+), the actively developed successor where all new features land. For new projects, prefer Xberg — repo https://github.com/xberg-io/xberg, docs https://docs.xberg.io. Use this skill when the project already targets Kreuzberg v4. Migration guide: https://docs.kreuzberg.dev/lts/.
Use this skill when writing code that:
- Extracts text or metadata from documents
- Performs OCR on scanned documents or images
- Batch-processes multiple files
- Configures extraction options (output format, chunking, OCR, language detection)
- Implements custom plugins (post-processors, validators, OCR backends)
Installation
Python
pip install kreuzberg
# Optional OCR backends:
pip install kreuzberg[easyocr] # EasyOCR
Node.js
npm install @kreuzberg/node
Rust
# Cargo.toml
[dependencies]
kreuzberg = { version = "4", features = ["tokio-runtime"] }
# features: tokio-runtime (required for sync + batch), pdf, ocr, chunking,
# embeddings, language-detection, keywords-yake, keywords-rake
CLI
# Download from GitHub releases, or:
cargo install kreuzberg-cli
Quick Start
Python (Async)
from kreuzberg import extract_file
result = await extract_file("document.pdf")
print(result.content) # extracted text
print(result.metadata) # document metadata
print(result.tables) # extracted tables
Python (Sync)
from kreuzberg import extract_file_sync
result = extract_file_sync("document.pdf")
print(result.content)
Node.js
import { extractFile } from '@kreuzberg/node';
const result = await extractFile('document.pdf');
console.log(result.content);
console.log(result.metadata);
console.log(result.tables);
Node.js (Sync)
import { extractFileSync } from '@kreuzberg/node';
const result = extractFileSync('document.pdf');
Rust (Async)
use kreuzberg::{extract_file, ExtractionConfig};
#[tokio::main]
async fn main() -> kreuzberg::Result<()> {
let config = ExtractionConfig::default();
let result = extract_file("document.pdf", None, &config).await?;
println!("{}", result.content);
Ok(())
}
Rust (Sync) — requires tokio-runtime feature
use kreuzberg::{extract_file_sync, ExtractionConfig};
fn main() -> kreuzberg::Result<()> {
let config = ExtractionConfig::default();
let result = extract_file_sync("document.pdf", None, &config)?;
println!("{}", result.content);
Ok(())
}
CLI
kreuzberg extract document.pdf
kreuzberg extract document.pdf --format json
kreuzberg extract document.pdf --output-format markdown
Configuration
All languages use the same configuration structure with language-appropriate naming conventions.
Python (snake_case)
from kreuzberg import (
ExtractionConfig, OcrConfig, TesseractConfig,
PdfConfig, ChunkingConfig,
)
config = ExtractionConfig(
ocr=OcrConfig(
backend="tesseract",
language="eng",
tesseract_config=TesseractConfig(psm=6, enable_table_detection=True),
),
pdf_options=PdfConfig(passwords=["secret123"]),
chunking=ChunkingConfig(max_chars=1000, max_overlap=200),
output_format="markdown",
)
result = await extract_file("document.pdf", config=config)
Node.js (camelCase)
import { extractFile, type ExtractionConfig } from '@kreuzberg/node';
const config: ExtractionConfig = {
ocr: { backend: 'tesseract', language: 'eng' },
pdfOptions: { passwords: ['secret123'] },
chunking: { maxChars: 1000, maxOverlap: 200 },
outputFormat: 'markdown',
};
const result = await extractFile('document.pdf', null, config);
Rust (snake_case)
use kreuzberg::{ExtractionConfig, OcrConfig, ChunkingConfig, OutputFormat};
let config = ExtractionConfig {
ocr: Some(OcrConfig {
backend: "tesseract".into(),
language: "eng".into(),
..Default::default()
}),
chunking: Some(ChunkingConfig {
max_characters: 1000,
overlap: 200,
..Default::default()
}),
output_format: OutputFormat::Markdown,
..Default::default()
};
let result = extract_file("document.pdf", None, &config).await?;
Config File (TOML)
output_format = "markdown"
[ocr]
backend = "tesseract"
language = "eng"
[chunking]
max_chars = 1000
max_overlap = 200
[pdf_options]
passwords = ["secret123"]
# CLI: auto-discovers kreuzberg.toml in current/parent directories
kreuzberg extract doc.pdf
# or explicit:
kreuzberg extract doc.pdf --config kreuzberg.toml
kreuzberg extract doc.pdf --config-json '{"ocr":{"backend":"tesseract","language":"deu"}}'
Batch Processing
Python
from kreuzberg import batch_extract_files, batch_extract_files_sync
# Async
results = await batch_extract_files(["doc1.pdf", "doc2.docx", "doc3.xlsx"])
# Sync
results = batch_extract_files_sync(["doc1.pdf", "doc2.docx"])
for result in results:
print(f"{len(result.content)} chars extracted")
Node.js
import { batchExtractFiles } from '@kreuzberg/node';
const results = await batchExtractFiles(['doc1.pdf', 'doc2.docx']);
Rust — requires tokio-runtime feature
use kreuzberg::{batch_extract_file, ExtractionConfig};
let config = ExtractionConfig::default();
let paths = vec!["doc1.pdf", "doc2.docx"];
let results = batch_extract_file(paths, &config).await?;
CLI
kreuzberg batch *.pdf --format json
kreuzberg batch docs/*.docx --output-format markdown
OCR
OCR runs automatically for images and scanned PDFs. Tesseract is the default backend (native binding, no external install required).
Backends
- Tesseract (default): Built-in native binding. All Tesseract languages supported.
- EasyOCR (Python only):
pip install kreuzberg[easyocr]. Pass easyocr_kwargs={"gpu": True}.
- PaddleOCR (Python only): Bundled since 4.8.5, no extra install needed. Pass
paddleocr_kwargs={"use_angle_cls": True}.
- Guten (Node.js only): Built-in OCR backend via
GutenOcrBackend.
Language Codes
config = ExtractionConfig(ocr=OcrConfig(language="eng")) # English
config = ExtractionConfig(ocr=OcrConfig(language="eng+deu")) # Multiple
config = ExtractionConfig(ocr=OcrConfig(language="all")) # All installed
Force OCR
config = ExtractionConfig(force_ocr=True) # OCR even if text is extractable
ExtractionResult Fields
| Field |
Python |
Node.js |
Rust |
Description |
| Text content |
result.content |
result.content |
result.content |
Extracted text (str/String) |
| MIME type |
result.mime_type |
result.mimeType |
result.mime_type |
Input document MIME type |
| Metadata |
result.metadata |
result.metadata |
result.metadata |
Document metadata (dict/object/HashMap) |
| Tables |
result.tables |
result.tables |
result.tables |
Extracted tables with cells + markdown |
| Languages |
result.detected_languages |
result.detectedLanguages |
result.detected_languages |
Detected languages (if enabled) |
| Chunks |
result.chunks |
result.chunks |
result.chunks |
Text chunks (if chunking enabled) |
| Images |
result.images |
result.images |
result.images |
Extracted images (if enabled) |
| Elements |
result.elements |
result.elements |
result.elements |
Semantic elements (if element_based format) |
| Pages |
result.pages |
result.pages |
result.pages |
Per-page content (if page extraction enabled) |
| Keywords |
result.keywords |
result.keywords |
result.keywords |
Extracted keywords (if enabled) |
Error Handling
Python
from kreuzberg import (
extract_file_sync, KreuzbergError, ParsingError,
OCRError, ValidationError, MissingDependencyError,
)
try:
result = extract_file_sync("file.pdf")
except ParsingError as e:
print(f"Failed to parse: {e}")
except OCRError as e:
print(f"OCR failed: {e}")
except ValidationError as e:
print(f"Invalid input: {e}")
except MissingDependencyError as e:
print(f"Missing dependency: {e}")
except KreuzbergError as e:
print(f"Extraction failed: {e}")
Node.js
import {
extractFile, KreuzbergError, ParsingError,
OcrError, ValidationError, MissingDependencyError,
} from '@kreuzberg/node';
try {
const result = await extractFile('file.pdf');
} catch (e) {
if (e instanceof ParsingError) { /* ... */ }
else if (e instanceof OcrError) { /* ... */ }
else if (e instanceof ValidationError) { /* ... */ }
else if (e instanceof KreuzbergError) { /* ... */ }
}
Rust
use kreuzberg::{extract_file, ExtractionConfig, KreuzbergError};
let config = ExtractionConfig::default();
match extract_file("file.pdf", None, &config).await {
Ok(result) => println!("{}", result.content),
Err(KreuzbergError::Parsing(msg)) => eprintln!("Parse error: {msg}"),
Err(KreuzbergError::Ocr(msg)) => eprintln!("OCR error: {msg}"),
Err(e) => eprintln!("Error: {e}"),
}
Common Pitfalls
- Python ChunkingConfig fields: Use
max_chars and max_overlap, NOT max_characters or overlap.
- Rust extract_file signature: Third argument is
&ExtractionConfig (a reference), not Option. Use &ExtractionConfig::default() for defaults.
- Rust feature gates:
extract_file_sync, batch_extract_file, and batch_extract_file_sync all require features = ["tokio-runtime"] in Cargo.toml.
- Rust async context:
extract_file is async. Use #[tokio::main] or call from an async context.
- CLI --format vs --output-format:
--format controls CLI output (text/json). --output-format controls content format (plain/markdown/djot/html).
- Node.js extractFile signature:
extractFile(path, mimeType?, config?) — mimeType is the second arg (pass null to skip).
- Python detect_mime_type: The function for detecting from bytes is
detect_mime_type(data). For paths use detect_mime_type_from_path(path).
- Config file field names: Use snake_case in TOML/YAML/JSON config files (e.g.,
max_chars, max_overlap, pdf_options).
Supported Formats (Summary)
| Category |
Extensions |
| PDF |
.pdf |
| Word |
.docx, .odt |
| Spreadsheets |
.xlsx, .xlsm, .xlsb, .xls, .xla, .xlam, .xltm, .ods |
| Presentations |
.pptx, .ppt, .ppsx |
| eBooks |
.epub, .fb2 |
| Images |
.png, .jpg, .jpeg, .gif, .webp, .bmp, .tiff, .tif, .jp2, .jpx, .jpm, .mj2, .jbig2, .jb2, .pnm, .pbm, .pgm, .ppm, .svg |
| Markup |
.html, .htm, .xhtml, .xml |
| Data |
.json, .yaml, .yml, .toml, .csv, .tsv |
| Text |
.txt, .md, .markdown, .djot, .rst, .org, .rtf |
| Email |
.eml, .msg |
| Archives |
.zip, .tar, .tgz, .gz, .7z |
| Academic |
.bib, .biblatex, .ris, .nbib, .enw, .csl, .tex, .latex, .typ, .jats, .ipynb, .docbook, .opml, .pod, .mdoc, .troff |
See references/supported-formats.md for the complete format reference with MIME types.
Additional Resources
Detailed reference files for specific topics:
- Python API Reference — All functions, config classes, plugin protocols, exact signatures
- Node.js API Reference — All functions, TypeScript interfaces, worker pool APIs
- Rust API Reference — All functions with feature gates, structs, Cargo.toml examples
- CLI Reference — All commands, flags, config precedence, exit codes
- Configuration Reference — TOML/YAML/JSON formats, auto-discovery, env vars, full schema
- Supported Formats — All 85+ formats with file extensions and MIME types
- Advanced Features — Plugins, embeddings, MCP server, API server, security limits
- Other Language Bindings — Go, Ruby, Java, C#, PHP, Elixir, WASM, Docker
Full documentation: https://docs.kreuzberg.dev
GitHub: https://github.com/kreuzberg-dev/kreuzberg-lts
1---2name: kreuzberg3description: Extract text, tables, metadata, and images from 91+ document formats (PDF, Office, images, HTML, email, archives, academic) using Kreuzberg. Use when writing code that calls Kreuzberg APIs in Python, Node.js/TypeScript, Rust, or CLI. Covers installation, extraction (sync/async), configuration (OCR, chunking, output format), batch processing, error handling, and plugins.4license: MIT5---67# Kreuzberg Document Extraction89Kreuzberg is a high-performance document intelligence library with a Rust core and native bindings for Python, Node.js/TypeScript, Ruby, Go, Java, C#, PHP, and Elixir. It extracts text, tables, metadata, and images from 91+ file formats including PDF, Office documents, images (with OCR), HTML, email, archives, and academic formats.1011> **Version note:** This skill covers Kreuzberg **v4**, the legacy long-term-support line (critical bug and security fixes only, best-effort through the end of 2026). The current version is **[Xberg](https://github.com/xberg-io/xberg)** (v5+), the actively developed successor where all new features land. For new projects, prefer Xberg — repo <https://github.com/xberg-io/xberg>, docs <https://docs.xberg.io>. Use this skill when the project already targets Kreuzberg v4. Migration guide: <https://docs.kreuzberg.dev/lts/>.1213Use this skill when writing code that:1415- Extracts text or metadata from documents16- Performs OCR on scanned documents or images17- Batch-processes multiple files18- Configures extraction options (output format, chunking, OCR, language detection)19- Implements custom plugins (post-processors, validators, OCR backends)2021## Installation2223### Python2425```bash26pip install kreuzberg27# Optional OCR backends:28pip install kreuzberg[easyocr] # EasyOCR29```3031### Node.js3233```bash34npm install @kreuzberg/node35```3637### Rust3839```toml40# Cargo.toml41[dependencies]42kreuzberg = { version = "4", features = ["tokio-runtime"] }43# features: tokio-runtime (required for sync + batch), pdf, ocr, chunking,44# embeddings, language-detection, keywords-yake, keywords-rake45```4647### CLI4849```bash50# Download from GitHub releases, or:51cargo install kreuzberg-cli52```5354## Quick Start5556### Python (Async)5758```python59from kreuzberg import extract_file6061result = await extract_file("document.pdf")62print(result.content) # extracted text63print(result.metadata) # document metadata64print(result.tables) # extracted tables65```6667### Python (Sync)6869```python70from kreuzberg import extract_file_sync7172result = extract_file_sync("document.pdf")73print(result.content)74```7576### Node.js7778```typescript79import { extractFile } from '@kreuzberg/node';8081const result = await extractFile('document.pdf');82console.log(result.content);83console.log(result.metadata);84console.log(result.tables);85```8687### Node.js (Sync)8889```typescript90import { extractFileSync } from '@kreuzberg/node';9192const result = extractFileSync('document.pdf');93```9495### Rust (Async)9697```rust98use kreuzberg::{extract_file, ExtractionConfig};99100#[tokio::main]101async fn main() -> kreuzberg::Result<()> {102 let config = ExtractionConfig::default();103 let result = extract_file("document.pdf", None, &config).await?;104 println!("{}", result.content);105 Ok(())106}107```108109### Rust (Sync) — requires `tokio-runtime` feature110111```rust112use kreuzberg::{extract_file_sync, ExtractionConfig};113114fn main() -> kreuzberg::Result<()> {115 let config = ExtractionConfig::default();116 let result = extract_file_sync("document.pdf", None, &config)?;117 println!("{}", result.content);118 Ok(())119}120```121122### CLI123124```bash125kreuzberg extract document.pdf126kreuzberg extract document.pdf --format json127kreuzberg extract document.pdf --output-format markdown128```129130## Configuration131132All languages use the same configuration structure with language-appropriate naming conventions.133134### Python (snake_case)135136```python137from kreuzberg import (138 ExtractionConfig, OcrConfig, TesseractConfig,139 PdfConfig, ChunkingConfig,140)141142config = ExtractionConfig(143 ocr=OcrConfig(144 backend="tesseract",145 language="eng",146 tesseract_config=TesseractConfig(psm=6, enable_table_detection=True),147 ),148 pdf_options=PdfConfig(passwords=["secret123"]),149 chunking=ChunkingConfig(max_chars=1000, max_overlap=200),150 output_format="markdown",151)152153result = await extract_file("document.pdf", config=config)154```155156### Node.js (camelCase)157158```typescript159import { extractFile, type ExtractionConfig } from '@kreuzberg/node';160161const config: ExtractionConfig = {162 ocr: { backend: 'tesseract', language: 'eng' },163 pdfOptions: { passwords: ['secret123'] },164 chunking: { maxChars: 1000, maxOverlap: 200 },165 outputFormat: 'markdown',166};167168const result = await extractFile('document.pdf', null, config);169```170171### Rust (snake_case)172173```rust174use kreuzberg::{ExtractionConfig, OcrConfig, ChunkingConfig, OutputFormat};175176let config = ExtractionConfig {177 ocr: Some(OcrConfig {178 backend: "tesseract".into(),179 language: "eng".into(),180 ..Default::default()181 }),182 chunking: Some(ChunkingConfig {183 max_characters: 1000,184 overlap: 200,185 ..Default::default()186 }),187 output_format: OutputFormat::Markdown,188 ..Default::default()189};190191let result = extract_file("document.pdf", None, &config).await?;192```193194### Config File (TOML)195196```toml197output_format = "markdown"198199[ocr]200backend = "tesseract"201language = "eng"202203[chunking]204max_chars = 1000205max_overlap = 200206207[pdf_options]208passwords = ["secret123"]209```210211```bash212# CLI: auto-discovers kreuzberg.toml in current/parent directories213kreuzberg extract doc.pdf214# or explicit:215kreuzberg extract doc.pdf --config kreuzberg.toml216kreuzberg extract doc.pdf --config-json '{"ocr":{"backend":"tesseract","language":"deu"}}'217```218219## Batch Processing220221### Python222223```python224from kreuzberg import batch_extract_files, batch_extract_files_sync225226# Async227results = await batch_extract_files(["doc1.pdf", "doc2.docx", "doc3.xlsx"])228229# Sync230results = batch_extract_files_sync(["doc1.pdf", "doc2.docx"])231232for result in results:233 print(f"{len(result.content)} chars extracted")234```235236### Node.js237238```typescript239import { batchExtractFiles } from '@kreuzberg/node';240241const results = await batchExtractFiles(['doc1.pdf', 'doc2.docx']);242```243244### Rust — requires `tokio-runtime` feature245246```rust247use kreuzberg::{batch_extract_file, ExtractionConfig};248249let config = ExtractionConfig::default();250let paths = vec!["doc1.pdf", "doc2.docx"];251let results = batch_extract_file(paths, &config).await?;252```253254### CLI255256```bash257kreuzberg batch *.pdf --format json258kreuzberg batch docs/*.docx --output-format markdown259```260261## OCR262263OCR runs automatically for images and scanned PDFs. Tesseract is the default backend (native binding, no external install required).264265### Backends266267- **Tesseract** (default): Built-in native binding. All Tesseract languages supported.268- **EasyOCR** (Python only): `pip install kreuzberg[easyocr]`. Pass `easyocr_kwargs={"gpu": True}`.269- **PaddleOCR** (Python only): Bundled since 4.8.5, no extra install needed. Pass `paddleocr_kwargs={"use_angle_cls": True}`.270- **Guten** (Node.js only): Built-in OCR backend via `GutenOcrBackend`.271272### Language Codes273274```python275config = ExtractionConfig(ocr=OcrConfig(language="eng")) # English276config = ExtractionConfig(ocr=OcrConfig(language="eng+deu")) # Multiple277config = ExtractionConfig(ocr=OcrConfig(language="all")) # All installed278```279280### Force OCR281282```python283config = ExtractionConfig(force_ocr=True) # OCR even if text is extractable284```285286## ExtractionResult Fields287288| Field | Python | Node.js | Rust | Description |289|-------|--------|---------|------|-------------|290| Text content | `result.content` | `result.content` | `result.content` | Extracted text (str/String) |291| MIME type | `result.mime_type` | `result.mimeType` | `result.mime_type` | Input document MIME type |292| Metadata | `result.metadata` | `result.metadata` | `result.metadata` | Document metadata (dict/object/HashMap) |293| Tables | `result.tables` | `result.tables` | `result.tables` | Extracted tables with cells + markdown |294| Languages | `result.detected_languages` | `result.detectedLanguages` | `result.detected_languages` | Detected languages (if enabled) |295| Chunks | `result.chunks` | `result.chunks` | `result.chunks` | Text chunks (if chunking enabled) |296| Images | `result.images` | `result.images` | `result.images` | Extracted images (if enabled) |297| Elements | `result.elements` | `result.elements` | `result.elements` | Semantic elements (if element_based format) |298| Pages | `result.pages` | `result.pages` | `result.pages` | Per-page content (if page extraction enabled) |299| Keywords | `result.keywords` | `result.keywords` | `result.keywords` | Extracted keywords (if enabled) |300301## Error Handling302303### Python304305```python306from kreuzberg import (307 extract_file_sync, KreuzbergError, ParsingError,308 OCRError, ValidationError, MissingDependencyError,309)310311try:312 result = extract_file_sync("file.pdf")313except ParsingError as e:314 print(f"Failed to parse: {e}")315except OCRError as e:316 print(f"OCR failed: {e}")317except ValidationError as e:318 print(f"Invalid input: {e}")319except MissingDependencyError as e:320 print(f"Missing dependency: {e}")321except KreuzbergError as e:322 print(f"Extraction failed: {e}")323```324325### Node.js326327```typescript328import {329 extractFile, KreuzbergError, ParsingError,330 OcrError, ValidationError, MissingDependencyError,331} from '@kreuzberg/node';332333try {334 const result = await extractFile('file.pdf');335} catch (e) {336 if (e instanceof ParsingError) { /* ... */ }337 else if (e instanceof OcrError) { /* ... */ }338 else if (e instanceof ValidationError) { /* ... */ }339 else if (e instanceof KreuzbergError) { /* ... */ }340}341```342343### Rust344345```rust346use kreuzberg::{extract_file, ExtractionConfig, KreuzbergError};347348let config = ExtractionConfig::default();349match extract_file("file.pdf", None, &config).await {350 Ok(result) => println!("{}", result.content),351 Err(KreuzbergError::Parsing(msg)) => eprintln!("Parse error: {msg}"),352 Err(KreuzbergError::Ocr(msg)) => eprintln!("OCR error: {msg}"),353 Err(e) => eprintln!("Error: {e}"),354}355```356357## Common Pitfalls3583591. **Python ChunkingConfig fields**: Use `max_chars` and `max_overlap`, NOT `max_characters` or `overlap`.3602. **Rust extract_file signature**: Third argument is `&ExtractionConfig` (a reference), not `Option`. Use `&ExtractionConfig::default()` for defaults.3613. **Rust feature gates**: `extract_file_sync`, `batch_extract_file`, and `batch_extract_file_sync` all require `features = ["tokio-runtime"]` in Cargo.toml.3624. **Rust async context**: `extract_file` is async. Use `#[tokio::main]` or call from an async context.3635. **CLI --format vs --output-format**: `--format` controls CLI output (text/json). `--output-format` controls content format (plain/markdown/djot/html).3646. **Node.js extractFile signature**: `extractFile(path, mimeType?, config?)` — mimeType is the second arg (pass `null` to skip).3657. **Python detect_mime_type**: The function for detecting from bytes is `detect_mime_type(data)`. For paths use `detect_mime_type_from_path(path)`.3668. **Config file field names**: Use snake_case in TOML/YAML/JSON config files (e.g., `max_chars`, `max_overlap`, `pdf_options`).367368## Supported Formats (Summary)369370| Category | Extensions |371|----------|-----------|372| **PDF** | `.pdf` |373| **Word** | `.docx`, `.odt` |374| **Spreadsheets** | `.xlsx`, `.xlsm`, `.xlsb`, `.xls`, `.xla`, `.xlam`, `.xltm`, `.ods` |375| **Presentations** | `.pptx`, `.ppt`, `.ppsx` |376| **eBooks** | `.epub`, `.fb2` |377| **Images** | `.png`, `.jpg`, `.jpeg`, `.gif`, `.webp`, `.bmp`, `.tiff`, `.tif`, `.jp2`, `.jpx`, `.jpm`, `.mj2`, `.jbig2`, `.jb2`, `.pnm`, `.pbm`, `.pgm`, `.ppm`, `.svg` |378| **Markup** | `.html`, `.htm`, `.xhtml`, `.xml` |379| **Data** | `.json`, `.yaml`, `.yml`, `.toml`, `.csv`, `.tsv` |380| **Text** | `.txt`, `.md`, `.markdown`, `.djot`, `.rst`, `.org`, `.rtf` |381| **Email** | `.eml`, `.msg` |382| **Archives** | `.zip`, `.tar`, `.tgz`, `.gz`, `.7z` |383| **Academic** | `.bib`, `.biblatex`, `.ris`, `.nbib`, `.enw`, `.csl`, `.tex`, `.latex`, `.typ`, `.jats`, `.ipynb`, `.docbook`, `.opml`, `.pod`, `.mdoc`, `.troff` |384385See [references/supported-formats.md](references/supported-formats.md) for the complete format reference with MIME types.386387## Additional Resources388389Detailed reference files for specific topics:390391- **[Python API Reference](references/python-api.md)** — All functions, config classes, plugin protocols, exact signatures392- **[Node.js API Reference](references/nodejs-api.md)** — All functions, TypeScript interfaces, worker pool APIs393- **[Rust API Reference](references/rust-api.md)** — All functions with feature gates, structs, Cargo.toml examples394- **[CLI Reference](references/cli-reference.md)** — All commands, flags, config precedence, exit codes395- **[Configuration Reference](references/configuration.md)** — TOML/YAML/JSON formats, auto-discovery, env vars, full schema396- **[Supported Formats](references/supported-formats.md)** — All 85+ formats with file extensions and MIME types397- **[Advanced Features](references/advanced-features.md)** — Plugins, embeddings, MCP server, API server, security limits398- **[Other Language Bindings](references/other-bindings.md)** — Go, Ruby, Java, C#, PHP, Elixir, WASM, Docker399400Full documentation: <https://docs.kreuzberg.dev>401GitHub: <https://github.com/kreuzberg-dev/kreuzberg-lts>