open-agents-ai 0.103.33 → 0.103.35

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/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -20549,7 +20549,7 @@ var init_nexusBackend = __esm({
20549
20549
  try {
20550
20550
  parsed = JSON.parse(rawResult);
20551
20551
  } catch {
20552
- throw new Error(`Invalid response from nexus daemon: ${rawResult.slice(0, 200)}`);
20552
+ throw new Error(rawResult.slice(0, 500));
20553
20553
  }
20554
20554
  if (parsed.success === false) {
20555
20555
  throw new Error(`Remote inference failed: ${parsed.output || rawResult}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.103.33",
3
+ "version": "0.103.35",
4
4
  "description": "AI coding agent powered by open-source models (Ollama/vLLM) — interactive TUI with agentic tool-calling loop",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -81,7 +81,7 @@
81
81
  },
82
82
  "optionalDependencies": {
83
83
  "moondream": "^0.2.0",
84
- "open-agents-nexus": "^1.5.8",
84
+ "open-agents-nexus": "^1.5.10",
85
85
  "viem": "^2.47.4"
86
86
  }
87
87
  }