open-agents-ai 0.128.0 → 0.129.0

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 -10
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -41463,6 +41463,7 @@ async function handleExposeConfig(ctx) {
41463
41463
  }
41464
41464
  async function showModelPicker(ctx, local = false) {
41465
41465
  try {
41466
+ renderInfo("Loading models...");
41466
41467
  const models = await fetchModels(ctx.config.backendUrl, ctx.config.apiKey);
41467
41468
  if (models.length === 0) {
41468
41469
  renderWarning("No models found.");
@@ -44309,21 +44310,14 @@ var init_banner = __esm({
44309
44310
  return this.currentDesign;
44310
44311
  }
44311
44312
  /**
44312
- * Start rendering the banner.
44313
- * Sets up DECSTBM scroll region so rows 1-3 are locked at top and
44314
- * content below row 4 scrolls normally without overlapping the banner.
44313
+ * Start rendering the banner into the top 3 rows.
44314
+ * Does NOT set DECSTBM scroll region that's managed by StatusBar.activate()
44315
+ * which accounts for both the banner height AND the footer height.
44315
44316
  * Returns the number of rows reserved (3 banner + 1 separator = 4).
44316
44317
  */
44317
44318
  start() {
44318
44319
  if (!isTTY7 || !this.currentDesign)
44319
44320
  return 0;
44320
- const termRows = process.stdout.rows ?? 24;
44321
- process.stdout.write("\x1B[1;1H");
44322
- for (let i = 0; i < this.rows + 1; i++) {
44323
- process.stdout.write("\x1B[2K\n");
44324
- }
44325
- process.stdout.write(`\x1B[${this.rows + 2};${termRows}r`);
44326
- process.stdout.write(`\x1B[${this.rows + 2};1H`);
44327
44321
  this.renderCurrentFrame();
44328
44322
  this._resizeHandler = () => {
44329
44323
  this.width = process.stdout.columns ?? 80;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.128.0",
3
+ "version": "0.129.0",
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",