Files
fil/docs/snippets/python/advanced/language_detection_config.md
Henrik Jess Nielsen b4c07d3693
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s
Nomad changes
2026-06-01 23:40:55 +02:00

12 lines
276 B
Markdown

```python title="Python"
from kreuzberg import ExtractionConfig, LanguageDetectionConfig
config: ExtractionConfig = ExtractionConfig(
language_detection=LanguageDetectionConfig(
enabled=True,
min_confidence=0.8,
detect_multiple=False,
)
)
```