woolball-client
Version:
Client-side library for Woolball enabling secure browser resource sharing for distributed AI task processing
12 lines (11 loc) • 369 B
JavaScript
;
/**
* WebLLM module
* Provides functionality for inference using MLC WebLLM
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.process = void 0;
// Use require for the worker.js file (CommonJS)
// @ts-ignore - Ignoring TypeScript error for importing JS file
const { process } = require('./worker.js');
exports.process = process;