@tiens.nguyen/gonext-local-worker 1.0.29 → 1.0.30

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.
@@ -115,6 +115,11 @@ if (args[0] === "ws-ping-test") {
115
115
  const text = await res.text();
116
116
  if (!res.ok) {
117
117
  console.error(`[gonext-worker] ws-ping-test failed ${res.status}: ${text}`);
118
+ if (res.status === 404 && text.includes("Cannot POST")) {
119
+ console.error(
120
+ "[gonext-worker] DEPLOY: this API does not have POST /api/worker/ws-ping-test yet. From repo root: sam build && sam deploy (or ship updated server-bundle to your Node host)."
121
+ );
122
+ }
118
123
  process.exit(1);
119
124
  }
120
125
  console.log("[gonext-worker] ws-ping-test OK:", text);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tiens.nguyen/gonext-local-worker",
3
- "version": "1.0.29",
3
+ "version": "1.0.30",
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",