@deeplake/hivemind 0.7.41 → 0.7.45

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.
@@ -129,6 +129,7 @@ function countLocalManifestEntries(path = LOCAL_MANIFEST_PATH) {
129
129
  const m = readLocalManifest(path);
130
130
  return Array.isArray(m?.entries) ? m.entries.length : 0;
131
131
  }
132
+ var LATEST_RUN_WINDOW_MS = 5 * 60 * 1e3;
132
133
 
133
134
  // dist/src/skillify/spawn-mine-local-worker.js
134
135
  import { execFileSync, spawn } from "node:child_process";
@@ -838,6 +838,7 @@ function countLocalManifestEntries(path = LOCAL_MANIFEST_PATH) {
838
838
  const m = readLocalManifest(path);
839
839
  return Array.isArray(m?.entries) ? m.entries.length : 0;
840
840
  }
841
+ var LATEST_RUN_WINDOW_MS = 5 * 60 * 1e3;
841
842
 
842
843
  // dist/src/skillify/spawn-mine-local-worker.js
843
844
  import { execFileSync, spawn } from "node:child_process";
@@ -837,6 +837,7 @@ function countLocalManifestEntries(path = LOCAL_MANIFEST_PATH) {
837
837
  const m = readLocalManifest(path);
838
838
  return Array.isArray(m?.entries) ? m.entries.length : 0;
839
839
  }
840
+ var LATEST_RUN_WINDOW_MS = 5 * 60 * 1e3;
840
841
 
841
842
  // dist/src/skillify/spawn-mine-local-worker.js
842
843
  import { execFileSync, spawn } from "node:child_process";
@@ -1584,7 +1584,7 @@ function extractLatestVersion(body) {
1584
1584
  return typeof v === "string" && v.length > 0 ? v : null;
1585
1585
  }
1586
1586
  function getInstalledVersion() {
1587
- return "0.7.41".length > 0 ? "0.7.41" : null;
1587
+ return "0.7.45".length > 0 ? "0.7.45" : null;
1588
1588
  }
1589
1589
  function isNewer(latest, current) {
1590
1590
  const parse = (v) => v.replace(/-.*$/, "").split(".").map(Number);
@@ -52,5 +52,5 @@
52
52
  }
53
53
  }
54
54
  },
55
- "version": "0.7.41"
55
+ "version": "0.7.45"
56
56
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hivemind",
3
- "version": "0.7.41",
3
+ "version": "0.7.45",
4
4
  "type": "module",
5
5
  "description": "Hivemind — cloud-backed persistent shared memory for AI agents, powered by DeepLake",
6
6
  "license": "Apache-2.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deeplake/hivemind",
3
- "version": "0.7.41",
3
+ "version": "0.7.45",
4
4
  "description": "Cloud-backed persistent shared memory for AI agents powered by Deeplake",
5
5
  "type": "module",
6
6
  "repository": {