-
Notifications
You must be signed in to change notification settings - Fork 121
Description
I am using the code from documentation like this:
import { BrowserAI } from '@browserai/browserai';
const browserAI = new BrowserAI();
// Load model with progress tracking
await browserAI.loadModel('llama-3.2-1b-instruct', {
quantization: 'q4f16_1',
onProgress: (progress) => console.log('Loading:', progress.progress + '%')
});
// Generate text
const response = await browserAI.generateText('Hello, how are you?');
console.log(response.choices[0].message.content);
but i got an error like this:
Error: Unable to load image processing library.
at file:///home/fariz/Desktop/Fulltime/Crawler/browser-ai/node_modules/@browserai/browserai/dist/index.mjs:8659:9
at ModuleJob.run (node:internal/modules/esm/module_job:271:25)
at async onImport.tracePromise.proto (node:internal/modules/esm/loader:578:26)
at async asyncRunEntryPointWithESMLoader (node:internal/modules/run_main:116:5)