Files
fil/docs/snippets/r/plugins/unregister_plugins.md

12 lines
288 B
Markdown
Raw Normal View History

2026-06-01 23:40:55 +02:00
<!-- snippet:syntax-only -->
```r title="R"
library(kreuzberg)
# Remove plugins by their registered name.
unregister_post_processor("metadata_enrichment")
unregister_validator("min_length")
unregister_ocr_backend("custom_ocr_backend")
unregister_document_extractor("custom_format")
```