@tiens.nguyen/gonext-local-worker 1.0.250 → 1.0.252

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 +4 -3
  2. package/package.json +1 -1
package/gonext-repl.mjs CHANGED
@@ -1148,9 +1148,10 @@ async function runAgentTurn(history) {
1148
1148
  // Line 2 (indented): the SPINNER + the playful word together, both in the cycling
1149
1149
  // color — the spinner belongs with the word (dot on the label line, spinner leading
1150
1150
  // the flavor line).
1151
- // Task #83: after the playful word, show the running agent-code-model token count
1152
- // (dim), e.g. " ⠙ Caffeinating… · 12.3k tok". Only once we've seen some tokens.
1153
- const tokLabel = latestCodeTokens > 0 ? dim(` · ${fmtTokens(latestCodeTokens)} tok`) : "";
1151
+ // Task #83: after the playful word, ALWAYS show the running agent-code-model token
1152
+ // count (dim), e.g. " ⠙ Caffeinating… · 12.3k tok" starts at 0 tok" and climbs
1153
+ // as steps send more, so it's visible from the first thinking frame.
1154
+ const tokLabel = dim(` · ${fmtTokens(latestCodeTokens)} tok`);
1154
1155
  process.stdout.write(
1155
1156
  `${green(BULLET)} ${green(`${fit(primary)}… (${secs}s)`)}` +
1156
1157
  "\n" + ` ${color256(wc, `${glyph} ${thinkWord}…`)}${tokLabel}`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiens.nguyen/gonext-local-worker",
3
- "version": "1.0.250",
3
+ "version": "1.0.252",
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",