open-agents-ai 0.187.70 → 0.187.71

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 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -279671,6 +279671,8 @@ var init_status_bar = __esm({
279671
279671
  if (!this.active)
279672
279672
  return;
279673
279673
  this.updateFooterHeight();
279674
+ if (this._currentFooterHeight < 4)
279675
+ this._currentFooterHeight = 4;
279674
279676
  this.writeDepth++;
279675
279677
  this.cancelMouseIdle();
279676
279678
  this.enableMouseTracking();
@@ -279853,7 +279855,8 @@ ${CONTENT_BG_SEQ}`);
279853
279855
  return;
279854
279856
  const rows = process.stdout.rows ?? 24;
279855
279857
  const pos = this.rowPositions(rows);
279856
- this.termWrite(`\x1B[${pos.inputStartRow};1H\x1B[2K\x1B[?25h`);
279858
+ const inputTextRow = pos.inputStartRow + 1;
279859
+ this.termWrite(`\x1B[${inputTextRow};${this.promptWidth + 1}H\x1B[?25h`);
279857
279860
  }
279858
279861
  /** Strip ANSI escape codes to measure visible character width */
279859
279862
  static visWidth(s2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.70",
3
+ "version": "0.187.71",
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",