open-agents-ai 0.187.562 → 0.187.563

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/dist/index.js CHANGED
@@ -532536,8 +532536,9 @@ ${memoryLines.join("\n")}`
532536
532536
  });
532537
532537
  for (const _old of _sorted.slice(0, 2)) {
532538
532538
  const _oldId = _old.id;
532539
- if (_oldId) {
532540
- this._evictCompletedTodoMessages(0, turn, _oldId, _old.content, compacted);
532539
+ if (_oldId && this._todoInProgressTurn.has(_oldId)) {
532540
+ const _st = this._todoInProgressTurn.get(_oldId);
532541
+ this._evictCompletedTodoMessages(_st, turn, _oldId, _old.content, compacted);
532541
532542
  }
532542
532543
  }
532543
532544
  }
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.562",
3
+ "version": "0.187.563",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "open-agents-ai",
9
- "version": "0.187.562",
9
+ "version": "0.187.563",
10
10
  "hasInstallScript": true,
11
11
  "license": "CC-BY-NC-4.0",
12
12
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.562",
3
+ "version": "0.187.563",
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",