Files
fil/docs/snippets/python/metadata/language_detection.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

14 lines
292 B
Markdown

```python title="Python"
from kreuzberg import ExtractionConfig, LanguageDetectionConfig
config = ExtractionConfig(
language_detection=LanguageDetectionConfig(
enabled=True,
min_confidence=0.9,
detect_multiple=True,
),
)
print(config.language_detection)
```