open-agents-ai 0.187.217 → 0.187.218

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 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -291721,11 +291721,9 @@ function tuiSelect(opts) {
291721
291721
  const first2 = findSelectable(0, 1);
291722
291722
  cursor = first2 >= 0 ? first2 : 0;
291723
291723
  }
291724
- const reservedTopBottom = 0;
291725
291724
  const hasCrumbs = opts.breadcrumbs && opts.breadcrumbs.length > 0;
291726
- const selectChrome = (hasCrumbs ? 11 : 10) + 1;
291727
- const contentArea = opts.availableRows ? opts.availableRows + reservedTopBottom : termRows();
291728
- let maxVisible = opts.maxVisible ?? Math.max(3, contentArea - selectChrome);
291725
+ const selectChrome = (hasCrumbs ? 9 : 8) + 1;
291726
+ let maxVisible = opts.maxVisible ?? Math.max(3, termRows() - selectChrome);
291729
291727
  let scrollOffset = 0;
291730
291728
  let lastRenderedLines = 0;
291731
291729
  return new Promise((resolve39) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.187.217",
3
+ "version": "0.187.218",
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",