open-agents-ai 0.187.43 → 0.187.44
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.
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -301478,7 +301478,9 @@ ${CONTENT_BG_SEQ}`);
|
|
|
301478
301478
|
const row = pos.inputStartRow + 1 + i2;
|
|
301479
301479
|
const prefix = i2 === 0 ? this.promptText : " ".repeat(this.promptWidth);
|
|
301480
301480
|
const lineContent = `${prefix}${inputWrap.lines[i2]}`;
|
|
301481
|
-
buf += `\x1B[${row};1H${PANEL_BG_SEQ}\x1B[2K
|
|
301481
|
+
buf += `\x1B[${row};1H${PANEL_BG_SEQ}\x1B[2K`;
|
|
301482
|
+
buf += `${BOX_FG}${BOX_V}${RESET}${PANEL_BG_SEQ}${lineContent}`;
|
|
301483
|
+
buf += `${PANEL_BG_SEQ}\x1B[K`;
|
|
301482
301484
|
buf += `\x1B[${row};${w}H${BOX_FG}${BOX_V}${RESET}`;
|
|
301483
301485
|
}
|
|
301484
301486
|
const cursorTermRow = pos.inputStartRow + 1 + inputWrap.cursorRow;
|
package/package.json
CHANGED