hebbian 0.8.1 → 0.8.2
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/bin/hebbian.js +11 -1
- package/dist/bin/hebbian.js.map +1 -1
- package/package.json +1 -1
package/dist/bin/hebbian.js
CHANGED
|
@@ -3595,7 +3595,17 @@ var init_feedback = __esm({
|
|
|
3595
3595
|
init_constants();
|
|
3596
3596
|
import { parseArgs } from "util";
|
|
3597
3597
|
import { resolve as resolve3 } from "path";
|
|
3598
|
-
|
|
3598
|
+
import { createRequire } from "module";
|
|
3599
|
+
var _require = createRequire(import.meta.url);
|
|
3600
|
+
var VERSION = (() => {
|
|
3601
|
+
for (const rel of ["../package.json", "../../package.json"]) {
|
|
3602
|
+
try {
|
|
3603
|
+
return _require(rel).version;
|
|
3604
|
+
} catch {
|
|
3605
|
+
}
|
|
3606
|
+
}
|
|
3607
|
+
return "0.0.0";
|
|
3608
|
+
})();
|
|
3599
3609
|
var HELP = `
|
|
3600
3610
|
hebbian v${VERSION} \u2014 Folder-as-neuron brain for any AI agent.
|
|
3601
3611
|
|