1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
//! Main extraction configuration struct.
//!
//! This module contains the main `ExtractionConfig` struct that aggregates all
//! configuration options for the extraction process.
use serde::{Deserialize, Serialize};
use super::super::acceleration::AccelerationConfig;
use super::super::content_filter::ContentFilterConfig;
use super::super::formats::OutputFormat;
use super::super::ocr::OcrConfig;
use super::super::page::PageConfig;
use super::super::processing::{ChunkingConfig, PostProcessorConfig};
use super::file_config::FileExtractionConfig;
use super::types::{ImageExtractionConfig, LanguageDetectionConfig, TokenReductionConfig};
/// Main extraction configuration.
///
/// This struct contains all configuration options for the extraction process.
/// It can be loaded from TOML, YAML, or JSON files, or created programmatically.
///
/// # Example
///
/// ```rust
/// use kreuzberg::core::config::ExtractionConfig;
///
/// // Create with defaults
/// let config = ExtractionConfig::default();
///
/// // Load from TOML file
/// // let config = ExtractionConfig::from_toml_file("kreuzberg.toml")?;
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ExtractionConfig {
/// Enable caching of extraction results
#[serde(default = "default_true")]
pub use_cache: bool,
/// Enable quality post-processing
#[serde(default = "default_true")]
pub enable_quality_processing: bool,
/// OCR configuration (None = OCR disabled)
#[serde(default)]
pub ocr: Option<OcrConfig>,
/// Force OCR even for searchable PDFs
#[serde(default)]
pub force_ocr: bool,
/// Force OCR on specific pages only (1-indexed page numbers, must be >= 1).
///
/// When set, only the listed pages are OCR'd regardless of text layer quality.
/// Unlisted pages use native text extraction. Ignored when `force_ocr` is `true`.
/// Only applies to PDF documents. Duplicates are automatically deduplicated.
/// An `ocr` config is recommended for backend/language selection; defaults are used if absent.
#[serde(default)]
#[serde(skip_serializing_if = "Option::is_none")]
pub force_ocr_pages: Option<Vec<usize>>,
/// Disable OCR entirely, even for images.
///
/// When `true`, OCR is skipped for all document types. Images return metadata
/// only (dimensions, format, EXIF) without text extraction. PDFs use only
/// native text extraction without OCR fallback.
///
/// Cannot be `true` simultaneously with `force_ocr`.
///
/// *Added in v4.7.0.*
#[serde(default)]
pub disable_ocr: bool,
/// Text chunking configuration (None = chunking disabled)
#[serde(default)]
pub chunking: Option<ChunkingConfig>,
/// Content filtering configuration (None = use extractor defaults).
///
/// Controls whether document "furniture" (headers, footers, watermarks,
/// repeating text) is included in or stripped from extraction results.
/// See [`ContentFilterConfig`] for per-field documentation.
#[serde(default)]
pub content_filter: Option<ContentFilterConfig>,
/// Image extraction configuration (None = no image extraction)
#[serde(default)]
pub images: Option<ImageExtractionConfig>,
/// PDF-specific options (None = use defaults)
#[cfg(feature = "pdf")]
#[serde(default)]
pub pdf_options: Option<super::super::pdf::PdfConfig>,
/// Token reduction configuration (None = no token reduction)
#[serde(default)]
pub token_reduction: Option<TokenReductionConfig>,
/// Language detection configuration (None = no language detection)
#[serde(default)]
pub language_detection: Option<LanguageDetectionConfig>,
/// Page extraction configuration (None = no page tracking)
#[serde(default)]
pub pages: Option<PageConfig>,
/// Keyword extraction configuration (None = no keyword extraction)
#[cfg(any(feature = "keywords-yake", feature = "keywords-rake"))]
#[serde(default)]
pub keywords: Option<crate::keywords::KeywordConfig>,
/// Post-processor configuration (None = use defaults)
#[serde(default)]
pub postprocessor: Option<PostProcessorConfig>,
/// HTML to Markdown conversion options (None = use defaults)
///
/// Configure how HTML documents are converted to Markdown, including heading styles,
/// list formatting, code block styles, and preprocessing options.
#[cfg(feature = "html")]
#[serde(default)]
pub html_options: Option<html_to_markdown_rs::ConversionOptions>,
/// Default per-file timeout in seconds for batch extraction.
///
/// When set, each file in a batch will be canceled after this duration
/// unless overridden by [`FileExtractionConfig::timeout_secs`].
/// `None` means no timeout (unbounded extraction time).
#[serde(default)]
pub extraction_timeout_secs: Option<u64>,
/// Maximum concurrent extractions in batch operations (None = (num_cpus × 1.5).ceil()).
///
/// Limits parallelism to prevent resource exhaustion when processing
/// large batches. Defaults to (num_cpus × 1.5).ceil() when not set.
#[serde(default)]
pub max_concurrent_extractions: Option<usize>,
/// Result structure format
///
/// Controls whether results are returned in unified format (default) with all
/// content in the `content` field, or element-based format with semantic
/// elements (for Unstructured-compatible output).
#[serde(default)]
pub result_format: crate::types::OutputFormat,
/// Security limits for archive extraction.
///
/// Controls maximum archive size, compression ratio, file count, and other
/// security thresholds to prevent decompression bomb attacks.
/// When `None`, default limits are used (500MB archive, 100:1 ratio, 10K files).
#[cfg(feature = "archives")]
#[serde(default)]
pub security_limits: Option<crate::extractors::security::SecurityLimits>,
/// Content text format (default: Plain).
///
/// Controls the format of the extracted content:
/// - `Plain`: Raw extracted text (default)
/// - `Markdown`: Markdown formatted output
/// - `Djot`: Djot markup format (requires djot feature)
/// - `Html`: HTML formatted output
///
/// When set to a structured format, extraction results will include
/// formatted output. The `formatted_content` field may be populated
/// when format conversion is applied.
#[serde(default)]
pub output_format: OutputFormat,
/// Layout detection configuration (None = layout detection disabled).
///
/// When set, PDF pages and images are analyzed for document structure
/// (headings, code, formulas, tables, figures, etc.) using RT-DETR models
/// via ONNX Runtime. For PDFs, layout hints override paragraph classification
/// in the markdown pipeline. For images, per-region OCR is performed with
/// markdown formatting based on detected layout classes.
/// Requires the `layout-detection` feature.
#[cfg(feature = "layout-detection")]
#[serde(default)]
pub layout: Option<super::super::layout::LayoutDetectionConfig>,
/// Enable structured document tree output.
///
/// When true, populates the `document` field on `ExtractionResult` with a
/// hierarchical `DocumentStructure` containing heading-driven section nesting,
/// table grids, content layer classification, and inline annotations.
///
/// Independent of `result_format` — can be combined with Unified or ElementBased.
#[serde(default)]
pub include_document_structure: bool,
/// Hardware acceleration configuration for ONNX Runtime models.
///
/// Controls execution provider selection for layout detection and embedding
/// models. When `None`, uses platform defaults (CoreML on macOS, CUDA on
/// Linux, CPU on Windows).
#[serde(default)]
pub acceleration: Option<AccelerationConfig>,
/// Cache namespace for tenant isolation.
///
/// When set, cache entries are stored under `{cache_dir}/{namespace}/`.
/// Must be alphanumeric, hyphens, or underscores only (max 64 chars).
/// Different namespaces have isolated cache spaces on the same filesystem.
#[serde(default)]
pub cache_namespace: Option<String>,
/// Per-request cache TTL in seconds.
///
/// Overrides the global `max_age_days` for this specific extraction.
/// When `0`, caching is completely skipped (no read or write).
/// When `None`, the global TTL applies.
#[serde(default)]
pub cache_ttl_secs: Option<u64>,
/// Email extraction configuration (None = use defaults).
///
/// Currently supports configuring the fallback codepage for MSG files
/// that do not specify one. See [`crate::core::config::EmailConfig`] for details.
#[serde(default)]
pub email: Option<super::super::email::EmailConfig>,
/// Concurrency limits for constrained environments (None = use defaults).
///
/// Controls Rayon thread pool size, ONNX Runtime intra-op threads, and
/// (when `max_concurrent_extractions` is unset) the batch concurrency
/// semaphore. See [`crate::core::config::ConcurrencyConfig`] for details.
#[serde(default)]
pub concurrency: Option<super::super::concurrency::ConcurrencyConfig>,
/// Maximum recursion depth for archive extraction (default: 3).
/// Set to 0 to disable recursive extraction (legacy behavior).
#[serde(default = "default_archive_depth")]
pub max_archive_depth: usize,
/// Tree-sitter language pack configuration (None = tree-sitter disabled).
///
/// When set, enables code file extraction using tree-sitter parsers.
/// Controls grammar download behavior and code analysis options.
#[cfg(feature = "tree-sitter")]
#[serde(default)]
pub tree_sitter: Option<super::super::tree_sitter::TreeSitterConfig>,
/// Structured extraction via LLM (None = disabled).
///
/// When set, the extracted document content is sent to an LLM with the
/// provided JSON schema. The structured response is stored in
/// `ExtractionResult::structured_output`.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub structured_extraction: Option<super::super::llm::StructuredExtractionConfig>,
}
impl Default for ExtractionConfig {
fn default() -> Self {
Self {
use_cache: true,
enable_quality_processing: true,
ocr: None,
force_ocr: false,
force_ocr_pages: None,
disable_ocr: false,
chunking: None,
content_filter: None,
images: None,
#[cfg(feature = "pdf")]
pdf_options: None,
token_reduction: None,
language_detection: None,
pages: None,
#[cfg(any(feature = "keywords-yake", feature = "keywords-rake"))]
keywords: None,
postprocessor: None,
#[cfg(feature = "html")]
html_options: None,
extraction_timeout_secs: None,
max_concurrent_extractions: None,
#[cfg(feature = "archives")]
security_limits: None,
#[cfg(feature = "layout-detection")]
layout: None,
result_format: crate::types::OutputFormat::Unified,
output_format: OutputFormat::Plain,
include_document_structure: false,
acceleration: None,
cache_namespace: None,
cache_ttl_secs: None,
email: None,
concurrency: None,
max_archive_depth: default_archive_depth(),
#[cfg(feature = "tree-sitter")]
tree_sitter: None,
structured_extraction: None,
}
}
}
impl ExtractionConfig {
/// Create a new `ExtractionConfig` by applying per-file overrides from a
/// [`FileExtractionConfig`]. Fields that are `Some` in the override replace the
/// corresponding field in `self`; `None` fields keep the original value.
///
/// Batch-level fields (`max_concurrent_extractions`, `use_cache`, `acceleration`,
/// `security_limits`) are never affected by overrides.
///
/// # Example
///
/// ```rust
/// use kreuzberg::{ExtractionConfig, FileExtractionConfig};
///
/// let base = ExtractionConfig::default();
/// let override_config = FileExtractionConfig {
/// force_ocr: Some(true),
/// ..Default::default()
/// };
/// let resolved = base.with_file_overrides(&override_config);
/// assert!(resolved.force_ocr);
/// ```
pub fn with_file_overrides(&self, overrides: &FileExtractionConfig) -> Self {
// Destructure to ensure compile-time exhaustiveness: adding a field to
// FileExtractionConfig without handling it here will produce a compile error.
let FileExtractionConfig {
ref enable_quality_processing,
ref ocr,
ref force_ocr,
ref force_ocr_pages,
ref disable_ocr,
ref chunking,
ref content_filter,
ref images,
#[cfg(feature = "pdf")]
ref pdf_options,
ref token_reduction,
ref language_detection,
ref pages,
#[cfg(any(feature = "keywords-yake", feature = "keywords-rake"))]
ref keywords,
ref postprocessor,
#[cfg(feature = "html")]
ref html_options,
ref result_format,
ref output_format,
ref include_document_structure,
#[cfg(feature = "layout-detection")]
ref layout,
ref timeout_secs,
#[cfg(feature = "tree-sitter")]
ref tree_sitter,
ref structured_extraction,
} = *overrides;
let mut config = self.clone();
if let Some(v) = enable_quality_processing {
config.enable_quality_processing = *v;
}
if let Some(v) = ocr {
config.ocr = Some(v.clone());
}
if let Some(v) = force_ocr {
config.force_ocr = *v;
}
if let Some(v) = force_ocr_pages {
config.force_ocr_pages = Some(v.clone());
}
if let Some(v) = disable_ocr {
config.disable_ocr = *v;
}
if let Some(v) = chunking {
config.chunking = Some(v.clone());
}
if let Some(v) = content_filter {
config.content_filter = Some(v.clone());
}
if let Some(v) = images {
config.images = Some(v.clone());
}
#[cfg(feature = "pdf")]
if let Some(v) = pdf_options {
config.pdf_options = Some(v.clone());
}
if let Some(v) = token_reduction {
config.token_reduction = Some(v.clone());
}
if let Some(v) = language_detection {
config.language_detection = Some(v.clone());
}
if let Some(v) = pages {
config.pages = Some(v.clone());
}
#[cfg(any(feature = "keywords-yake", feature = "keywords-rake"))]
if let Some(v) = keywords {
config.keywords = Some(v.clone());
}
if let Some(v) = postprocessor {
config.postprocessor = Some(v.clone());
}
#[cfg(feature = "html")]
if let Some(v) = html_options {
config.html_options = Some(v.clone());
}
if let Some(v) = result_format {
config.result_format = *v;
}
if let Some(v) = output_format {
config.output_format = v.clone();
}
if let Some(v) = include_document_structure {
config.include_document_structure = *v;
}
#[cfg(feature = "layout-detection")]
if let Some(v) = layout {
config.layout = Some(v.clone());
}
if let Some(v) = timeout_secs {
config.extraction_timeout_secs = Some(*v);
}
#[cfg(feature = "tree-sitter")]
if let Some(v) = tree_sitter {
config.tree_sitter = Some(v.clone());
}
if let Some(v) = structured_extraction {
config.structured_extraction = Some(v.clone());
}
config
}
/// Normalize configuration for implicit requirements.
///
/// Currently handles:
/// - Auto-enabling `extract_pages` when `result_format` is `ElementBased`, because
/// the element transformation requires per-page data to assign correct page numbers.
/// Without this, all elements would incorrectly get `page_number=1`.
/// - Auto-enabling `extract_pages` when chunking is configured, because the chunker
/// needs page boundaries to assign correct page numbers to chunks.
pub fn normalized(&self) -> std::borrow::Cow<'_, Self> {
let needs_pages = |cfg: &Self| -> bool {
match &cfg.pages {
Some(page_config) => !page_config.extract_pages,
None => true,
}
};
let needs_pages_for_elements =
self.result_format == crate::types::OutputFormat::ElementBased && needs_pages(self);
let needs_pages_for_chunking = self.chunking.is_some() && needs_pages(self);
if needs_pages_for_elements || needs_pages_for_chunking {
let mut config = self.clone();
let page_config = config.pages.get_or_insert_with(super::super::page::PageConfig::default);
page_config.extract_pages = true;
return std::borrow::Cow::Owned(config);
}
std::borrow::Cow::Borrowed(self)
}
/// Validate the configuration, returning an error if any settings are invalid.
///
/// Checks:
/// - OCR backend name is supported (catches typos early)
/// - VLM backend config is present when backend is "vlm"
/// - Pipeline stage backends and VLM configs are valid
/// - Structured extraction schema and LLM model are non-empty
pub fn validate(&self) -> Result<(), crate::error::KreuzbergError> {
// Validate OCR config if present
if let Some(ref ocr) = self.ocr {
ocr.validate()?;
}
// Validate structured extraction config if present
if let Some(ref se) = self.structured_extraction {
crate::core::config_validation::validate_structured_extraction_schema(&se.schema, &se.llm.model)?;
}
Ok(())
}
/// Check if image processing is needed by examining OCR and image extraction settings.
///
/// Returns `true` if either OCR is enabled or image extraction is configured,
/// indicating that image decompression and processing should occur.
/// Returns `false` if both are disabled, allowing optimization to skip unnecessary
/// image decompression for text-only extraction workflows.
///
/// # Optimization Impact
/// For text-only extractions (no OCR, no image extraction), skipping image
/// decompression can improve CPU utilization by 5-10% by avoiding wasteful
/// image I/O and processing when results won't be used.
pub fn needs_image_processing(&self) -> bool {
let ocr_enabled = !self.disable_ocr && (self.ocr.is_some() || self.force_ocr);
let image_extraction_enabled = self.images.as_ref().map(|i| i.extract_images).unwrap_or(false);
#[cfg(feature = "layout-detection")]
let layout_enabled = self.layout.is_some();
#[cfg(not(feature = "layout-detection"))]
let layout_enabled = false;
ocr_enabled || image_extraction_enabled || layout_enabled
}
}
fn default_true() -> bool {
true
}
fn default_archive_depth() -> usize {
3
}