open-agents-ai 0.138.30 → 0.138.31
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 +6 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -29362,7 +29362,7 @@ function formatMarkdownLine(line) {
|
|
|
29362
29362
|
}
|
|
29363
29363
|
const ulMatch = line.match(/^(\s*)([-*+])\s+(.*)/);
|
|
29364
29364
|
if (ulMatch) {
|
|
29365
|
-
return ulMatch[1] + fg256(MD.listBullet, "\
|
|
29365
|
+
return ulMatch[1] + fg256(MD.listBullet, "\u25CB") + " " + formatInlineMarkdown(ulMatch[3]);
|
|
29366
29366
|
}
|
|
29367
29367
|
const olMatch = line.match(/^(\s*)(\d+[.)])\s+(.*)/);
|
|
29368
29368
|
if (olMatch) {
|
|
@@ -29411,7 +29411,7 @@ function formatMarkdownBlock(text) {
|
|
|
29411
29411
|
}
|
|
29412
29412
|
function renderUserMessage(text) {
|
|
29413
29413
|
process.stdout.write(`
|
|
29414
|
-
${c2.bold(c2.blue("
|
|
29414
|
+
${c2.bold(c2.blue("\u25B9 "))}${c2.bold(text)}
|
|
29415
29415
|
`);
|
|
29416
29416
|
}
|
|
29417
29417
|
function renderAssistantText(text) {
|
|
@@ -29722,7 +29722,7 @@ function renderWarning(message) {
|
|
|
29722
29722
|
}
|
|
29723
29723
|
function renderVerbose(message) {
|
|
29724
29724
|
const redir = _contentWriteHook?.redirect?.();
|
|
29725
|
-
const text = `${c2.dim(`
|
|
29725
|
+
const text = `${c2.dim(` \u25B9 ${message}`)}
|
|
29726
29726
|
`;
|
|
29727
29727
|
if (redir) {
|
|
29728
29728
|
redir(text);
|
|
@@ -45473,7 +45473,7 @@ var init_stream_renderer = __esm({
|
|
|
45473
45473
|
}
|
|
45474
45474
|
const ulMatch = line.match(/^(\s*)([-*+])\s+(.*)/);
|
|
45475
45475
|
if (ulMatch) {
|
|
45476
|
-
return ulMatch[1] + fg2563(PASTEL.blockquote, "\
|
|
45476
|
+
return ulMatch[1] + fg2563(PASTEL.blockquote, "\u25CB") + " " + this.highlightInline(ulMatch[3]);
|
|
45477
45477
|
}
|
|
45478
45478
|
const olMatch = line.match(/^(\s*)(\d+[.)])\s+(.*)/);
|
|
45479
45479
|
if (olMatch) {
|
|
@@ -51591,7 +51591,8 @@ ${CONTENT_BG_SEQ}`);
|
|
|
51591
51591
|
buf += "\x1B8";
|
|
51592
51592
|
buf += "\x1B[?25h";
|
|
51593
51593
|
buf += "\x1B[?2026l";
|
|
51594
|
-
process.stdout.write(
|
|
51594
|
+
const writer = this._origWrite ?? process.stdout.write.bind(process.stdout);
|
|
51595
|
+
writer(buf);
|
|
51595
51596
|
}
|
|
51596
51597
|
/**
|
|
51597
51598
|
* Clear the input row and position cursor there at column 1.
|
package/package.json
CHANGED