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

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
月光博客
月光博客
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
IT之家
IT之家
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare 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
refactor: prune stale qqbot helpers · openclaw/openclaw@4...
steipete · 2026-05-01 · via Recent Commits to openclaw:main

@@ -193,8 +193,8 @@ export interface FirstClosedMediaTag {

193193

/**

194194

* 在文本中查找**第一个**完整闭合的媒体标签

195195

*

196-

* 与 splitByMediaTags 不同,此函数只匹配一个标签就停止,

197-

* 用于流式场景的"循环消费"模式:每次处理一个标签,更新偏移,再找下一个。

196+

* 只匹配一个标签就停止,用于流式场景的"循环消费"模式:

197+

* 每次处理一个标签,更新偏移,再找下一个。

198198

*

199199

* @param text 待检查的文本(应已 normalize 过)

200200

* @returns 第一个闭合标签的信息,没有则返回 null

@@ -250,119 +250,6 @@ export function findFirstClosedMediaTag(

250250

return null;

251251

}

252252253-

/**

254-

* 媒体标签拆分结果

255-

*/

256-

export interface MediaSplitResult {

257-

/** 是否包含媒体标签 */

258-

hasMediaTags: boolean;

259-

/** 媒体标签前的纯文本 */

260-

textBeforeFirstTag: string;

261-

/** 媒体标签后的剩余文本 */

262-

textAfterLastTag: string;

263-

/** 完整的发送队列(标签间的文本 + 媒体项) */

264-

mediaQueue: SendQueueItem[];

265-

}

266-267-

/**

268-

* 将文本按富媒体标签拆分为三部分

269-

*

270-

* 用于两个场景:

271-

* 1. 流式模式:中断-恢复流程(标签前文本 → 结束流式 → 发送媒体 → 新流式 → 标签后文本)

272-

* 2. 普通模式:构建按顺序发送的队列

273-

*/

274-

export function splitByMediaTags(

275-

text: string,

276-

log?: {

277-

info?: (msg: string) => void;

278-

debug?: (msg: string) => void;

279-

error?: (msg: string) => void;

280-

},

281-

): MediaSplitResult {

282-

const normalized = normalizeMediaTags(text);

283-

const regex = createMediaTagRegex();

284-

// 过滤掉代码块内的匹配

285-

const matches = [...normalized.matchAll(regex)].filter(

286-

(m) => !isInsideCodeBlock(normalized, m.index),

287-

);

288-289-

if (matches.length === 0) {

290-

return {

291-

hasMediaTags: false,

292-

textBeforeFirstTag: normalized,

293-

textAfterLastTag: "",

294-

mediaQueue: [],

295-

};

296-

}

297-298-

// 第一个标签前的纯文本

299-

const firstMatch = matches[0];

300-

const textBeforeFirstTag = normalized

301-

.slice(0, firstMatch.index)

302-

.replace(/\n{3,}/g, "\n\n")

303-

.trim();

304-305-

// 最后一个标签后的纯文本

306-

const lastMatch = matches[matches.length - 1];

307-

const lastMatchEnd = lastMatch.index + lastMatch[0].length;

308-

const textAfterLastTag = normalized

309-

.slice(lastMatchEnd)

310-

.replace(/\n{3,}/g, "\n\n")

311-

.trim();

312-313-

// 构建媒体发送队列

314-

const mediaQueue: SendQueueItem[] = [];

315-

let lastIndex = firstMatch.index;

316-317-

for (const match of matches) {

318-

// 标签前的文本(标签之间的间隔文本)

319-

const textBetween = normalized

320-

.slice(lastIndex, match.index)

321-

.replace(/\n{3,}/g, "\n\n")

322-

.trim();

323-

if (textBetween && lastIndex !== firstMatch.index) {

324-

// 只添加非首段的间隔文本(首段由 textBeforeFirstTag 覆盖)

325-

mediaQueue.push({ type: "text", content: textBetween });

326-

}

327-328-

// 解析标签内容

329-

const tagName = match[1].toLowerCase();

330-

let mediaPath = match[2]?.trim() ?? "";

331-332-

// 剥离 MEDIA: 前缀

333-

if (mediaPath.startsWith("MEDIA:")) {

334-

mediaPath = mediaPath.slice("MEDIA:".length);

335-

}

336-

mediaPath = normalizePath(mediaPath);

337-338-

// 修复路径编码问题

339-

mediaPath = fixPathEncoding(mediaPath, log);

340-341-

// 根据标签类型加入队列

342-

const typeMap: Record<string, SendQueueItem["type"]> = {

343-

qqimg: "image",

344-

qqvoice: "voice",

345-

qqvideo: "video",

346-

qqfile: "file",

347-

qqmedia: "media",

348-

};

349-

const itemType = typeMap[tagName] ?? "image";

350-

if (mediaPath) {

351-

mediaQueue.push({ type: itemType, content: mediaPath });

352-

log?.info?.(`Found ${itemType} in <${tagName}>: ${mediaPath.slice(0, 80)}`);

353-

}

354-355-

lastIndex = match.index + match[0].length;

356-

}

357-358-

return {

359-

hasMediaTags: true,

360-

textBeforeFirstTag,

361-

textAfterLastTag,

362-

mediaQueue,

363-

};

364-

}

365-366253

// ============ 发送队列执行 ============

367254368255

/**