@tiens.nguyen/gonext-local-worker 1.0.243 → 1.0.244

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: 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).
1085
+ // Line 1: green ● + green phase/seconds (matches the web's green streaming label).
1086
+ // Line 2 (indented): the SPINNER + the playful word together, both in the cycling
1087
+ // color — the spinner belongs with the word (dot on the label line, spinner leading
1088
+ // the flavor line).
1088
1089
  process.stdout.write(
1089
- `${green(BULLET)} ${yellow(`${fit(primary)}… (${secs}s)`)}` +
1090
+ `${green(BULLET)} ${green(`${fit(primary)}… (${secs}s)`)}` +
1090
1091
  "\n" + ` ${color256(wc, `${glyph} ${thinkWord}…`)}`
1091
1092
  );
1092
1093
  statusShown = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiens.nguyen/gonext-local-worker",
3
- "version": "1.0.243",
3
+ "version": "1.0.244",
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",