open-agents-ai 0.138.82 → 0.138.83

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 +1 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -53661,6 +53661,7 @@ ${CONTENT_BG_SEQ}`);
53661
53661
  if (sel) {
53662
53662
  line = TextSelection.applyHighlight(line, sel.startCol, sel.endCol);
53663
53663
  }
53664
+ line = line.replace(/\x1B\[0m/g, `\x1B[0m${CONTENT_BG_SEQ}`);
53664
53665
  buf += `\x1B[${screenRow};1H${CONTENT_BG_SEQ}\x1B[2K${line}`;
53665
53666
  }
53666
53667
  if (this._contentScrollOffset > 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-agents-ai",
3
- "version": "0.138.82",
3
+ "version": "0.138.83",
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",