Files
fil/docs/snippets/wasm/utils/token_reduction.md

16 lines
299 B
Markdown
Raw Permalink Normal View History

2026-06-01 23:40:55 +02:00
```typescript title="WASM"
import init, { extractFile } from "kreuzberg-wasm";
await init();
const config = {
tokenReduction: {
mode: "moderate",
preserveImportantWords: true,
},
};
const result = await extractFile("document.pdf", undefined, config);
console.log(result.content);
```