This commit is contained in:
13
docs/snippets/r/api/extract_file_sync.md
Normal file
13
docs/snippets/r/api/extract_file_sync.md
Normal file
@@ -0,0 +1,13 @@
|
||||
```r title="R"
|
||||
library(kreuzberg)
|
||||
|
||||
json <- extract_file_sync(
|
||||
path = "document.pdf",
|
||||
mime_type = "application/pdf",
|
||||
config = ExtractionConfig$default()
|
||||
)
|
||||
result <- jsonlite::fromJSON(json, simplifyVector = FALSE)
|
||||
|
||||
cat(sprintf("MIME type: %s\n", result$mime_type))
|
||||
cat(sprintf("Content length: %d characters\n", nchar(result$content)))
|
||||
```
|
||||
Reference in New Issue
Block a user