549 B
549 B
import Foundation
import Kreuzberg
import RustBridge
@main
struct App {
static func main() async throws {
let data = try Data(contentsOf: URL(fileURLWithPath: "document.pdf"))
let content = RustVec<UInt8>()
for byte in data { content.push(value: byte) }
let config = try extractionConfigFromJson("{}")
let result = try await extractBytes(content, "application/pdf", config)
print(result.content().toString())
print("Tables: \(result.tables().count)")
}
}