open-agents-ai 0.187.60 → 0.187.61

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 +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -279434,8 +279434,8 @@ var init_status_bar = __esm({
279434
279434
  beginContentWrite() {
279435
279435
  if (!this.active)
279436
279436
  return;
279437
+ this.updateFooterHeight();
279437
279438
  this.writeDepth++;
279438
- this._brailleSpinner.setMetrics({ isStreaming: true });
279439
279439
  this.cancelMouseIdle();
279440
279440
  this.enableMouseTracking();
279441
279441
  const rows = process.stdout.rows ?? 24;
@@ -280660,7 +280660,7 @@ function tuiSelect(opts) {
280660
280660
  const first2 = findSelectable(0, 1);
280661
280661
  cursor = first2 >= 0 ? first2 : 0;
280662
280662
  }
280663
- const reservedTopBottom = 8;
280663
+ const reservedTopBottom = 1;
280664
280664
  const hasCrumbs = opts.breadcrumbs && opts.breadcrumbs.length > 0;
280665
280665
  const selectChrome = (hasCrumbs ? 11 : 10) + 3;
280666
280666
  const contentArea = opts.availableRows ? opts.availableRows + reservedTopBottom : process.stdout.rows ?? 24;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.60",
3
+ "version": "0.187.61",
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",