@tiens.nguyen/gonext-local-worker 1.0.241 → 1.0.242

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.
Files changed (2) hide show
  1. package/gonext-repl.mjs +5 -4
  2. package/package.json +1 -1
package/gonext-repl.mjs CHANGED
@@ -1082,11 +1082,12 @@ async function runAgentTurn(history) {
1082
1082
  const max = Math.max(24, (process.stdout.columns || 80) - 14);
1083
1083
  const fit = (s) => (s.length > max ? s.slice(0, max - 1) + "…" : s);
1084
1084
  clearStatus();
1085
- // Line 1: cycling-color spinner + yellow phase/seconds. Line 2: the word in the same
1086
- // cycling color (the web colors the spinner + word together; primary stays the theme).
1085
+ // Line 1: green + yellow phase/seconds. Line 2 (indented): the SPINNER + the playful
1086
+ // word together, both in the cycling color the spinner belongs with the word, like
1087
+ // the web (dot on the label line, spinner leading the flavor line).
1087
1088
  process.stdout.write(
1088
- `${color256(wc, glyph)} ${yellow(`${fit(primary)}… (${secs}s)`)}` +
1089
- "\n" + color256(wc, ` ${thinkWord}…`)
1089
+ `${green(BULLET)} ${yellow(`${fit(primary)}… (${secs}s)`)}` +
1090
+ "\n" + ` ${color256(wc, `${glyph} ${thinkWord}…`)}`
1090
1091
  );
1091
1092
  statusShown = true;
1092
1093
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiens.nguyen/gonext-local-worker",
3
- "version": "1.0.241",
3
+ "version": "1.0.242",
4
4
  "description": "Polls GoNext cloud API for async local LLM jobs and runs them against Ollama/OpenAI-compatible servers on this Mac",
5
5
  "type": "module",
6
6
  "license": "MIT",