14 lines
292 B
Markdown
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)
|
||
|
|
```
|