18 lines
401 B
Markdown
18 lines
401 B
Markdown
```r title="R"
|
|
library(kreuzberg)
|
|
|
|
config <- list(
|
|
token_reduction = list(
|
|
mode = "moderate",
|
|
preserve_markdown = TRUE,
|
|
preserve_code = TRUE,
|
|
language_hint = "eng"
|
|
)
|
|
)
|
|
|
|
json <- extract_file_sync("document.pdf", "application/pdf", config)
|
|
result <- jsonlite::fromJSON(json, simplifyVector = FALSE)
|
|
|
|
cat(sprintf("Reduced content length: %d characters\n", nchar(result$content)))
|
|
```
|