open-agents-ai 0.187.63 → 0.187.64

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 +4 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -280478,8 +280478,10 @@ ${CONTENT_BG_SEQ}`);
280478
280478
  return;
280479
280479
  }
280480
280480
  if (key?.name === "return" || key?.name === "enter") {
280481
- self2.termWrite("\x1B[?25l");
280482
- origTtyWrite(s2, key);
280481
+ const currentLine = rl.line ?? "";
280482
+ rl.line = "";
280483
+ rl.cursor = 0;
280484
+ rl.emit("line", currentLine);
280483
280485
  self2.updateFooterHeight();
280484
280486
  self2.renderFooterAndPositionInput();
280485
280487
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.63",
3
+ "version": "0.187.64",
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",