Files
fil/docs/snippets/r/config/advanced_config.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

19 lines
546 B
Markdown

```r title="R"
library(kreuzberg)
config <- list(
ocr = list(backend = "tesseract", language = "eng"),
chunking = list(max_characters = 1500L, overlap = 300L),
output_format = "markdown",
include_document_structure = TRUE,
force_ocr = TRUE
)
json <- extract_file_sync("document.pdf", "application/pdf", config)
result <- jsonlite::fromJSON(json, simplifyVector = FALSE)
cat(sprintf("Format: %s\n", result$mime_type))
cat(sprintf("Chunks: %d\n", length(result$chunks)))
cat(sprintf("Content preview: %.50s...\n", result$content))
```