Files
fil/docs/snippets/r/plugins/custom_ocr_backend.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

16 lines
373 B
Markdown

```r
library(kreuzberg)
# List available OCR backends
backends <- list_ocr_backends()
cat("Available backends:", paste(backends, collapse = ", "), "\n")
# List registered post-processors
processors <- list_post_processors()
cat("Post-processors:", paste(processors, collapse = ", "), "\n")
# Clear all custom registrations
clear_post_processors()
clear_validators()
```