semantic-state-estimator 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -46365,7 +46365,7 @@ var WorkerManager = class {
46365
46365
  this.pendingRequests = /* @__PURE__ */ new Map();
46366
46366
  this.isReady = false;
46367
46367
  const url = workerUrl ?? createBlobWorkerUrl();
46368
- this.worker = new Worker(url, { type: "module" });
46368
+ this.worker = new Worker(url, { type: "classic" });
46369
46369
  this.worker.onerror = (event) => {
46370
46370
  console.error(
46371
46371
  "SemanticStateEstimator: worker encountered a fatal error \u2014 embeddings will be unavailable.",