| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| fabric_1.4.469_checksums.txt | 2026-08-03 | 736 Bytes | |
| fabric_Darwin_arm64.tar.gz | 2026-08-03 | 22.6 MB | |
| fabric_Darwin_x86_64.tar.gz | 2026-08-03 | 24.0 MB | |
| fabric_Linux_i386.tar.gz | 2026-08-03 | 22.1 MB | |
| fabric_Windows_x86_64.zip | 2026-08-03 | 23.9 MB | |
| fabric_Linux_arm64.tar.gz | 2026-08-03 | 21.5 MB | |
| fabric_Linux_x86_64.tar.gz | 2026-08-03 | 23.5 MB | |
| fabric_Windows_arm64.zip | 2026-08-03 | 21.6 MB | |
| fabric_Windows_i386.zip | 2026-08-03 | 22.9 MB | |
| README.md | 2026-08-03 | 1.1 kB | |
| v1.4.469 source code.tar.gz | 2026-08-03 | 20.9 MB | |
| v1.4.469 source code.zip | 2026-08-03 | 21.3 MB | |
| Totals: 12 Items | 224.3 MB | 0 | |
Changes
PR #2185 by ksylvan: feat(web): replace PDF.js pipeline with pdf-inspector WASM worker
- Replaced the PDF.js processing pipeline with the new
pdf-inspector.worker.ts, backed by@firecrawl/pdf-inspector-wasm. The worker initializes WASM one time and processes transferred ArrayBuffers. - Added worker error handling. A worker crash now rejects all pending requests with a clear error and terminates the worker. The next request starts a new worker.
- Fixed the file attachment behavior. The app now parses each file and stores its content without a chat request. One submit sends exactly one
streamChatcall, not one call for each attached file. - Removed the legacy PDF dependency chain:
pdf-to-markdown-core,pdfjs-dist,pdf-config.ts, and the related build configuration.@firecrawl/pdf-inspector-wasmis now the only PDF dependency. - Simplified the worker boundary in follow-up refactors: merged redundant methods, removed dead code, and inlined a single-use interface. The full test suite continued to pass.