@openagentsinc/pylon 0.1.12 → 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 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.12
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,12 +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.12` or newer. That release fixes
61
- Mac training-worker launch by preferring a current
62
- `target/release/psionic-train` binary and falling back to
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
63
65
  `cargo run --release` instead of debug `cargo run`
64
66
  - does not try to install or register a local runtime automatically; the
65
- bootstrap stays honest about the separate Ollama-compatible runtime
67
+ bootstrap stays honest about the separate local Gemma runtime
66
68
  prerequisite instead of mutating the host behind the user's back
67
69
 
68
70
  Set `OPENAGENTS_DISABLE_TELEMETRY=1` to disable installer telemetry, or
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openagentsinc/pylon",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Bootstrap the standalone OpenAgents Pylon release asset and run first-run smoke checks.",
5
5
  "type": "module",
6
6
  "bin": {
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 Ollama-compatible local runtime is answering /api/tags yet",
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 (macOS default): `brew install ollama`, `brew services start ollama`, `ollama pull gemma4:e4b`.",
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 an Ollama-compatible local runtime at `local_gemma_base_url` and load `gemma4:e4b`.",
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(