Files
fil/docs/snippets/kotlin/plugins/clear_plugins.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

15 lines
437 B
Markdown

```kotlin title="Kotlin"
import dev.kreuzberg.*
import dev.kreuzberg.kt.Kreuzberg
fun clearAllPlugins() {
// Note: there is no Kreuzberg.clearDocumentExtractors() — extractor
// registration is not exposed through the Kotlin/Java plugin bridge.
Kreuzberg.clearPostProcessors()
Kreuzberg.clearOcrBackends()
Kreuzberg.clearValidators()
println("All post-processors, OCR backends, and validators cleared")
}
```