@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.
- package/gonext-repl.mjs +5 -4
- 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 ● +
|
|
1086
|
-
//
|
|
1087
|
-
// the
|
|
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)} ${
|
|
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.
|
|
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",
|