@openagentsinc/pylon 0.1.11 → 0.1.13
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/README.md +8 -2
- package/package.json +1 -1
- package/src/index.js +3 -3
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ npx @openagentsinc/pylon
|
|
|
13
13
|
bunx @openagentsinc/pylon
|
|
14
14
|
npm install -g @openagentsinc/pylon && pylon
|
|
15
15
|
bun install -g @openagentsinc/pylon && pylon
|
|
16
|
-
npx @openagentsinc/pylon --version 0.1.
|
|
16
|
+
npx @openagentsinc/pylon --version 0.1.13
|
|
17
17
|
npx @openagentsinc/pylon --no-launch
|
|
18
18
|
npx @openagentsinc/pylon --download-curated-cache --model gemma-4-e2b --run-diagnostics
|
|
19
19
|
npx @openagentsinc/pylon --verbose
|
|
@@ -57,8 +57,14 @@ The launcher:
|
|
|
57
57
|
- starts the installed `pylon-tui` by default after the smoke path; that TUI
|
|
58
58
|
starts and supervises the earning worker
|
|
59
59
|
unless `--no-launch` is set
|
|
60
|
+
- for hosted homework/training work, use `0.1.13` or newer. That release keeps
|
|
61
|
+
the `0.1.12` Mac training-worker launch fix, removes the last legacy runtime
|
|
62
|
+
wording from the public bootstrap/runtime path, keeps runtime management
|
|
63
|
+
explicit instead of mutating the host automatically, prefers a current
|
|
64
|
+
`target/release/psionic-train` binary, and falls back to
|
|
65
|
+
`cargo run --release` instead of debug `cargo run`
|
|
60
66
|
- does not try to install or register a local runtime automatically; the
|
|
61
|
-
bootstrap stays honest about the separate
|
|
67
|
+
bootstrap stays honest about the separate local Gemma runtime
|
|
62
68
|
prerequisite instead of mutating the host behind the user's back
|
|
63
69
|
|
|
64
70
|
Set `OPENAGENTS_DISABLE_TELEMETRY=1` to disable installer telemetry, or
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -1969,7 +1969,7 @@ export function resolveBootstrapOutcome(summary) {
|
|
|
1969
1969
|
level: "warning",
|
|
1970
1970
|
verdict: "installed but runtime missing",
|
|
1971
1971
|
detail:
|
|
1972
|
-
"no
|
|
1972
|
+
"no local Gemma runtime is answering /api/tags yet",
|
|
1973
1973
|
};
|
|
1974
1974
|
}
|
|
1975
1975
|
|
|
@@ -2005,11 +2005,11 @@ function renderBootstrapNextSteps(summary, outcome) {
|
|
|
2005
2005
|
|
|
2006
2006
|
if (summary.target?.os === "darwin") {
|
|
2007
2007
|
lines.push(
|
|
2008
|
-
"Runtime setup
|
|
2008
|
+
"Runtime setup: start a local Gemma runtime at `local_gemma_base_url` and load `gemma4:e4b`.",
|
|
2009
2009
|
);
|
|
2010
2010
|
} else {
|
|
2011
2011
|
lines.push(
|
|
2012
|
-
"Runtime setup: start
|
|
2012
|
+
"Runtime setup: start a local Gemma runtime at `local_gemma_base_url` and load `gemma4:e4b`.",
|
|
2013
2013
|
);
|
|
2014
2014
|
}
|
|
2015
2015
|
lines.push(
|