Source code
Revision control
Copy as Markdown
Other Tools
/* Any copyright is dedicated to the Public Domain.
// eslint-disable-next-line import/no-unassigned-import
import "chrome://global/content/ml/MLEngine.worker.mjs";
if (typeof globalThis.InferenceSession?.isAvailable !== "function") {
throw new Error("InferenceSession.isAvailable is not defined");
}
globalThis.InferenceSession.isAvailable = () => true;