open-agents-ai 0.138.35 → 0.138.36

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 -7
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -54060,13 +54060,10 @@ Rationale: ${proposal.rationale}${provenanceNote}`;
54060
54060
  process.stdout.write(chunk);
54061
54061
  return;
54062
54062
  }
54063
- const rows = process.stdout.rows ?? 24;
54064
- const fh = statusBar._currentFooterHeight ?? 3;
54065
- const inputRow = rows - fh + 1;
54066
- const writer = statusBar._origWrite ? statusBar._origWrite.bind(process.stdout) : process.stdout.write.bind(process.stdout);
54067
- writer(`\x1B7\x1B[${inputRow};1H`);
54068
- writer(chunk);
54069
- writer(`\x1B8`);
54063
+ if (statusBar.isStreaming) {
54064
+ return;
54065
+ }
54066
+ process.stdout.write(chunk);
54070
54067
  });
54071
54068
  const rl = readline2.createInterface({
54072
54069
  input: mouseFilter,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.138.35",
3
+ "version": "0.138.36",
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",