@tiens.nguyen/gonext-local-worker 1.0.304 → 1.0.305

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 +3 -2
  2. package/package.json +1 -1
package/gonext-repl.mjs CHANGED
@@ -2143,9 +2143,10 @@ async function main() {
2143
2143
  // Only for turns that actually used the code model (plain-reply greetings = 0/0).
2144
2144
  if ((inputTokens ?? 0) > 0 || (outputTokens ?? 0) > 0) {
2145
2145
  console.log(
2146
- dim(" tokens · in ") +
2146
+ dim("tokens ·in ") +
2147
2147
  fmtTokens(inputTokens ?? 0) +
2148
- cyan(` · out ${fmtTokens(outputTokens ?? 0)}`)
2148
+ dim(" · ") +
2149
+ cyan(`↓ out ${fmtTokens(outputTokens ?? 0)}`)
2149
2150
  );
2150
2151
  }
2151
2152
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiens.nguyen/gonext-local-worker",
3
- "version": "1.0.304",
3
+ "version": "1.0.305",
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",