diff --git a/apps/api/src/scraper/scrapeURL/engines/pdf/index.ts b/apps/api/src/scraper/scrapeURL/engines/pdf/index.ts index 9d2f11b1..6bac2ba4 100644 --- a/apps/api/src/scraper/scrapeURL/engines/pdf/index.ts +++ b/apps/api/src/scraper/scrapeURL/engines/pdf/index.ts @@ -32,6 +32,9 @@ async function scrapePDFWithLlamaParse( tempFilePath, ) as unknown as ReadableStream; }, + bytes() { + throw Error("Unimplemented in mock Blob: bytes"); + }, arrayBuffer() { throw Error("Unimplemented in mock Blob: arrayBuffer"); },