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

推荐订阅源

IT之家
IT之家
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The GitHub Blog
The GitHub Blog
MyScale Blog
MyScale Blog
爱范儿
爱范儿
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
Y
Y Combinator Blog
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
Martin Fowler
Martin Fowler
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
M
MIT News - Artificial intelligence
博客园 - Franky
V
Visual Studio Blog
I
InfoQ
V
V2EX
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): honor explicit directive providers · openclaw/o...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -11,10 +11,12 @@ function makeProvider(

1111

id: string,

1212

order: number,

1313

parse: (ctx: SpeechDirectiveTokenParseContext) => SpeechDirectiveTokenParseResult | undefined,

14+

options?: { aliases?: string[] },

1415

): SpeechProviderPlugin {

1516

return {

1617

id,

1718

label: id,

19+

aliases: options?.aliases,

1820

autoSelectOrder: order,

1921

parseDirectiveToken: parse,

2022

isConfigured: () => true,

@@ -123,24 +125,111 @@ describe("parseTtsDirectives provider-aware routing", () => {

123125

expect(result.overrides.providerOverrides?.minimax).toBeUndefined();

124126

});

125127126-

it("falls through when the preferred provider does not handle the key", () => {

128+

it("does not fall through when the explicit provider does not handle the key", () => {

127129

const result = parseTtsDirectives("[[tts:provider=minimax style=0.4]]", fullPolicy, {

128130

providers: [elevenlabs, minimax],

129131

});

130132131133

expect(result.overrides.provider).toBe("minimax");

132-

expect(result.overrides.providerOverrides?.elevenlabs).toEqual({ style: 0.4 });

134+

expect(result.overrides.providerOverrides?.elevenlabs).toBeUndefined();

133135

expect(result.overrides.providerOverrides?.minimax).toBeUndefined();

136+

expect(result.warnings).toContain('unsupported minimax directive key "style"');

134137

});

135138136-

it("routes mixed tokens independently in the same directive", () => {

139+

it("keeps explicit-provider tokens scoped to the selected provider", () => {

137140

const result = parseTtsDirectives("[[tts:provider=minimax style=0.4 speed=1.2]]", fullPolicy, {

138141

providers: [elevenlabs, minimax],

139142

});

140143141144

expect(result.overrides.provider).toBe("minimax");

142145

expect(result.overrides.providerOverrides?.minimax).toEqual({ speed: 1.2 });

143-

expect(result.overrides.providerOverrides?.elevenlabs).toEqual({ style: 0.4 });

146+

expect(result.overrides.providerOverrides?.elevenlabs).toBeUndefined();

147+

expect(result.warnings).toContain('unsupported minimax directive key "style"');

148+

});

149+150+

it("does not route explicit provider tokens to another provider with overlapping keys", () => {

151+

const openai = makeProvider("openai", 10, ({ key, value }) => {

152+

if (key === "model") {

153+

return { handled: true, overrides: { model: value } };

154+

}

155+

return undefined;

156+

});

157+

const elevenlabsModel = makeProvider("elevenlabs", 20, ({ key, value }) => {

158+

if (key === "model") {

159+

return { handled: true, overrides: { modelId: value } };

160+

}

161+

return undefined;

162+

});

163+164+

const result = parseTtsDirectives("[[tts:provider=elevenlabs model=eleven_v3]]", fullPolicy, {

165+

providers: [openai, elevenlabsModel],

166+

});

167+168+

expect(result.overrides.provider).toBe("elevenlabs");

169+

expect(result.overrides.providerOverrides?.elevenlabs).toEqual({ modelId: "eleven_v3" });

170+

expect(result.overrides.providerOverrides?.openai).toBeUndefined();

171+

expect(result.warnings).toEqual([]);

172+

});

173+174+

it("warns instead of routing prefixed tokens to another provider when provider is explicit", () => {

175+

const result = parseTtsDirectives(

176+

"[[tts:provider=elevenlabs openai_model=gpt-4o-mini-tts]]",

177+

fullPolicy,

178+

{ providers: [elevenlabs, minimax] },

179+

);

180+181+

expect(result.overrides.provider).toBe("elevenlabs");

182+

expect(result.overrides.providerOverrides).toBeUndefined();

183+

expect(result.warnings).toContain('unsupported elevenlabs directive key "openai_model"');

184+

});

185+186+

it("passes the selected provider id to the chosen provider parser", () => {

187+

let selectedProvider: string | undefined;

188+

const selected = makeProvider("selected", 10, (ctx) => {

189+

selectedProvider = ctx.selectedProvider;

190+

return { handled: true, overrides: { voice: ctx.value } };

191+

});

192+193+

const result = parseTtsDirectives("[[tts:provider=selected voice=test]]", fullPolicy, {

194+

providers: [selected],

195+

});

196+197+

expect(result.overrides.providerOverrides?.selected).toEqual({ voice: "test" });

198+

expect(selectedProvider).toBe("selected");

199+

});

200+201+

it("resolves explicit provider aliases without rewriting the requested provider value", () => {

202+

const microsoft = makeProvider(

203+

"microsoft",

204+

10,

205+

({ key, value }) =>

206+

key === "voice" ? { handled: true, overrides: { voice: value } } : undefined,

207+

{ aliases: ["edge"] },

208+

);

209+210+

const result = parseTtsDirectives(

211+

"[[tts:provider=edge voice=en-US-MichelleNeural]]",

212+

fullPolicy,

213+

{

214+

providers: [microsoft],

215+

},

216+

);

217+218+

expect(result.overrides.provider).toBe("edge");

219+

expect(result.overrides.providerOverrides?.microsoft).toEqual({

220+

voice: "en-US-MichelleNeural",

221+

});

222+

expect(result.warnings).toEqual([]);

223+

});

224+225+

it("warns once and drops non-provider tokens when the explicit provider is unknown", () => {

226+

const result = parseTtsDirectives("[[tts:provider=missing speed=1.2 style=0.4]]", fullPolicy, {

227+

providers: [elevenlabs, minimax],

228+

});

229+230+

expect(result.overrides.provider).toBe("missing");

231+

expect(result.overrides.providerOverrides).toBeUndefined();

232+

expect(result.warnings).toEqual(['unknown provider "missing"']);

144233

});

145234146235

it("keeps last-wins provider semantics", () => {