惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
博客园 - 三生石上(FineUI控件)
V
Visual Studio Blog
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
小众软件
小众软件
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
月光博客
月光博客
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
罗磊的独立博客
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Recent Announcements
Recent Announcements
M
MIT News - Artificial intelligence
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(outbound): pack newline-mode paragraphs up to limit ·...
kesslerio · 2026-05-31 · via Recent Commits to openclaw:main

@@ -217,6 +217,7 @@ export function chunkByParagraph(

217217

const spans = parseFenceSpans(normalized);

218218219219

const parts: string[] = [];

220+

const separators: string[] = [];

220221

const re = /\n[\t ]*\n+/g; // paragraph break: blank line(s), allowing whitespace

221222

let lastIndex = 0;

222223

for (const match of normalized.matchAll(re)) {

@@ -228,23 +229,49 @@ export function chunkByParagraph(

228229

}

229230230231

parts.push(normalized.slice(lastIndex, idx));

232+

separators.push(match[0]);

231233

lastIndex = idx + match[0].length;

232234

}

233235

parts.push(normalized.slice(lastIndex));

234236235237

const chunks: string[] = [];

236-

for (const part of parts) {

238+

let currentChunk = "";

239+240+

const pushParagraph = (paragraph: string, separatorBefore?: string) => {

241+

if (!currentChunk) {

242+

if (paragraph.length <= limit) {

243+

currentChunk = paragraph;

244+

return;

245+

}

246+

if (!splitLongParagraphs) {

247+

chunks.push(paragraph);

248+

return;

249+

}

250+

chunks.push(...chunkText(paragraph, limit));

251+

return;

252+

}

253+254+

const candidate = `${currentChunk}${separatorBefore ?? "\n\n"}${paragraph}`;

255+

if (candidate.length <= limit) {

256+

currentChunk = candidate;

257+

return;

258+

}

259+260+

chunks.push(currentChunk);

261+

currentChunk = "";

262+

pushParagraph(paragraph);

263+

};

264+265+

for (const [index, part] of parts.entries()) {

237266

const paragraph = part.replace(/\s+$/g, "");

238267

if (!paragraph.trim()) {

239268

continue;

240269

}

241-

if (paragraph.length <= limit) {

242-

chunks.push(paragraph);

243-

} else if (!splitLongParagraphs) {

244-

chunks.push(paragraph);

245-

} else {

246-

chunks.push(...chunkText(paragraph, limit));

247-

}

270+

pushParagraph(paragraph, separators[index - 1]);

271+

}

272+273+

if (currentChunk) {

274+

chunks.push(currentChunk);

248275

}

249276250277

return chunks;

@@ -266,13 +293,12 @@ export function chunkMarkdownTextWithMode(text: string, limit: number, mode: Chu

266293

// If a paragraph must be split by length, defer to the markdown-aware chunker.

267294

const paragraphChunks = chunkByParagraph(text, limit, { splitLongParagraphs: false });

268295

const out: string[] = [];

269-

for (const chunk of paragraphChunks) {

270-

const nested = chunkMarkdownText(chunk, limit);

271-

if (!nested.length && chunk) {

272-

out.push(chunk);

273-

} else {

274-

out.push(...nested);

275-

}

296+

for (const chunk of paragraphChunks.flatMap((paragraphChunk) =>

297+

paragraphChunk.length > limit

298+

? splitPackedFenceParagraphChunk(paragraphChunk)

299+

: paragraphChunk,

300+

)) {

301+

out.push(...chunkMarkdownText(chunk, limit));

276302

}

277303

return out;

278304

}

@@ -295,6 +321,34 @@ function splitByNewline(

295321

return lines;

296322

}

297323324+

function splitPackedFenceParagraphChunk(chunk: string): string[] {

325+

const chunks: string[] = [];

326+

let start = 0;

327+

for (const span of parseFenceSpans(chunk)) {

328+

if (span.end <= start) {

329+

continue;

330+

}

331+

const separator = chunk.slice(span.end).match(/^\n[\t ]*\n+/)?.[0];

332+

if (!separator) {

333+

continue;

334+

}

335+

const tail = chunk.slice(span.end + separator.length);

336+

if (!tail.trim()) {

337+

continue;

338+

}

339+

chunks.push(chunk.slice(start, span.end));

340+

start = span.end + separator.length;

341+

}

342+

if (chunks.length === 0) {

343+

return [chunk];

344+

}

345+

const tail = chunk.slice(start);

346+

if (tail) {

347+

chunks.push(tail);

348+

}

349+

return chunks;

350+

}

351+298352

function resolveChunkEarlyReturn(text: string, limit: number): string[] | undefined {

299353

if (!text) {

300354

return [];