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

推荐订阅源

B
Blog RSS Feed
量子位
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏
V
Visual Studio Blog
博客园 - 聂微东
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
U
Unit 42
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
L
LangChain 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(tts): parse bare tags and ignore code examples · open...
steipete · 2026-04-25 · via Recent Commits to openclaw:main

@@ -16,6 +16,11 @@ type ParseTtsDirectiveOptions = {

1616

preferredProviderId?: string;

1717

};

181819+

type TextRange = {

20+

start: number;

21+

end: number;

22+

};

23+1924

function buildProviderOrder(left: SpeechProviderPlugin, right: SpeechProviderPlugin): number {

2025

const leftOrder = left.autoSelectOrder ?? Number.MAX_SAFE_INTEGER;

2126

const rightOrder = right.autoSelectOrder ?? Number.MAX_SAFE_INTEGER;

@@ -53,6 +58,46 @@ function prioritizeProvider(

5358

return [preferredProvider, ...providers.filter((provider) => provider.id !== providerId)];

5459

}

556061+

function collectMarkdownCodeRanges(text: string): TextRange[] {

62+

const ranges: TextRange[] = [];

63+

const addMatches = (regex: RegExp) => {

64+

for (const match of text.matchAll(regex)) {

65+

if (match.index == null) {

66+

continue;

67+

}

68+

ranges.push({ start: match.index, end: match.index + match[0].length });

69+

}

70+

};

71+72+

addMatches(/```[\s\S]*?```/g);

73+

addMatches(/~~~[\s\S]*?~~~/g);

74+

addMatches(/^(?: {4}|\t).*(?:\n|$)/gm);

75+

addMatches(/`+[^`\n]*`+/g);

76+77+

return ranges.toSorted((left, right) => left.start - right.start);

78+

}

79+80+

function isInsideRange(index: number, ranges: readonly TextRange[]): boolean {

81+

return ranges.some((range) => index >= range.start && index < range.end);

82+

}

83+84+

function replaceOutsideMarkdownCode(

85+

text: string,

86+

regex: RegExp,

87+

replace: (match: string, captures: readonly string[]) => string,

88+

): string {

89+

const codeRanges = collectMarkdownCodeRanges(text);

90+

return text.replace(regex, (...args: unknown[]) => {

91+

const match = String(args[0]);

92+

const offset = args.at(-2);

93+

if (typeof offset === "number" && isInsideRange(offset, codeRanges)) {

94+

return match;

95+

}

96+

const captures = args.slice(1, -2).map((capture) => String(capture));

97+

return replace(match, captures);

98+

});

99+

}

100+56101

export function parseTtsDirectives(

57102

text: string,

58103

policy: SpeechModelOverridePolicy,

@@ -62,7 +107,7 @@ export function parseTtsDirectives(

62107

return { cleanedText: text, overrides: {}, warnings: [], hasDirective: false };

63108

}

6410965-

if (!/\[\[tts:/iu.test(text)) {

110+

if (!/\[\[\s*\/?\s*tts(?:\s*:|\s*\]\])/iu.test(text)) {

66111

return { cleanedText: text, overrides: {}, warnings: [], hasDirective: false };

67112

}

68113

@@ -76,17 +121,27 @@ export function parseTtsDirectives(

76121

let cleanedText = text;

77122

let hasDirective = false;

7812379-

const blockRegex = /\[\[tts:text\]\]([\s\S]*?)\[\[\/tts:text\]\]/gi;

80-

cleanedText = cleanedText.replace(blockRegex, (_match, inner: string) => {

124+

const blockRegex = /\[\[\s*tts\s*:\s*text\s*\]\]([\s\S]*?)\[\[\s*\/\s*tts\s*:\s*text\s*\]\]/gi;

125+

cleanedText = replaceOutsideMarkdownCode(cleanedText, blockRegex, (_match, [inner = ""]) => {

81126

hasDirective = true;

82127

if (policy.allowText && overrides.ttsText == null) {

83128

overrides.ttsText = inner.trim();

84129

}

85130

return "";

86131

});

8713288-

const directiveRegex = /\[\[tts:([^\]]+)\]\]/gi;

89-

cleanedText = cleanedText.replace(directiveRegex, (_match, body: string) => {

133+

const plainBlockRegex = /\[\[\s*tts\s*\]\]([\s\S]*?)\[\[\s*\/\s*tts\s*\]\]/gi;

134+

cleanedText = replaceOutsideMarkdownCode(cleanedText, plainBlockRegex, (_match, [inner = ""]) => {

135+

hasDirective = true;

136+

const visible = inner.trim();

137+

if (policy.allowText && overrides.ttsText == null) {

138+

overrides.ttsText = visible;

139+

}

140+

return visible;

141+

});

142+143+

const directiveRegex = /\[\[\s*tts\s*:\s*([^\]]+)\]\]/gi;

144+

cleanedText = replaceOutsideMarkdownCode(cleanedText, directiveRegex, (_match, [body = ""]) => {

90145

hasDirective = true;

91146

const tokens = body.split(/\s+/).filter(Boolean);

92147

@@ -168,6 +223,18 @@ export function parseTtsDirectives(

168223

return "";

169224

});

170225226+

const bareTagRegex = /\[\[\s*tts\s*\]\]/gi;

227+

cleanedText = replaceOutsideMarkdownCode(cleanedText, bareTagRegex, () => {

228+

hasDirective = true;

229+

return "";

230+

});

231+232+

const closingTagRegex = /\[\[\s*\/\s*tts(?:\s*:\s*[^\]]*)?\]\]/gi;

233+

cleanedText = replaceOutsideMarkdownCode(cleanedText, closingTagRegex, () => {

234+

hasDirective = true;

235+

return "";

236+

});

237+171238

return {

172239

cleanedText,

173240

ttsText: overrides.ttsText,