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

推荐订阅源

Google DeepMind News
Google DeepMind News
I
InfoQ
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
L
LangChain Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Recent Announcements
Recent Announcements
GbyAI
GbyAI
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
腾讯CDC
美团技术团队
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
雷峰网
雷峰网
M
MIT News - Artificial intelligence
D
Docker
MongoDB | Blog
MongoDB | Blog
F
Fortinet All Blogs
博客园 - 叶小钗

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 test: merge chat context notice checks · openclaw/openclaw@5c2f4af 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
fix: register bundled TTS providers and route overrides c...
2026-04-16 · via Recent Commits to openclaw:main
1+

import { describe, expect, it } from "vitest";

2+

import type { SpeechProviderPlugin } from "../plugins/types.js";

3+

import { parseTtsDirectives } from "./directives.js";

4+

import type {

5+

SpeechDirectiveTokenParseContext,

6+

SpeechDirectiveTokenParseResult,

7+

SpeechModelOverridePolicy,

8+

} from "./provider-types.js";

9+10+

function makeProvider(

11+

id: string,

12+

order: number,

13+

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

14+

): SpeechProviderPlugin {

15+

return {

16+

id,

17+

label: id,

18+

autoSelectOrder: order,

19+

parseDirectiveToken: parse,

20+

isConfigured: () => true,

21+

synthesize: async () => ({

22+

audioBuffer: Buffer.alloc(0),

23+

outputFormat: "mp3",

24+

fileExtension: ".mp3",

25+

voiceCompatible: false,

26+

}),

27+

} as SpeechProviderPlugin;

28+

}

29+30+

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

31+

if (key === "speed") {

32+

return { handled: true, overrides: { speed: Number(value) } };

33+

}

34+

if (key === "style") {

35+

return { handled: true, overrides: { style: Number(value) } };

36+

}

37+

return undefined;

38+

});

39+40+

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

41+

if (key === "speed") {

42+

return { handled: true, overrides: { speed: Number(value) } };

43+

}

44+

return undefined;

45+

});

46+47+

const fullPolicy: SpeechModelOverridePolicy = {

48+

enabled: true,

49+

allowText: true,

50+

allowProvider: true,

51+

allowVoice: true,

52+

allowModelId: true,

53+

allowVoiceSettings: true,

54+

allowNormalization: true,

55+

allowSeed: true,

56+

};

57+58+

describe("parseTtsDirectives provider-aware routing", () => {

59+

it("routes generic speed to the explicitly declared provider", () => {

60+

const result = parseTtsDirectives(

61+

"hello [[tts:provider=minimax speed=1.2]] world",

62+

fullPolicy,

63+

{

64+

providers: [elevenlabs, minimax],

65+

},

66+

);

67+68+

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

69+

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

70+

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

71+

});

72+73+

it("routes correctly when provider appears after the generic token", () => {

74+

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

75+

providers: [elevenlabs, minimax],

76+

});

77+78+

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

79+

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

80+

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

81+

});

82+83+

it("routes to the preferred provider when no provider token is declared", () => {

84+

const result = parseTtsDirectives("[[tts:speed=1.5]]", fullPolicy, {

85+

providers: [elevenlabs, minimax],

86+

preferredProviderId: "minimax",

87+

});

88+89+

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

90+

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

91+

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

92+

});

93+94+

it("falls back to autoSelectOrder when no provider hint is available", () => {

95+

const result = parseTtsDirectives("[[tts:speed=1.5]]", fullPolicy, {

96+

providers: [elevenlabs, minimax],

97+

});

98+99+

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

100+

expect(result.overrides.providerOverrides?.elevenlabs).toEqual({ speed: 1.5 });

101+

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

102+

});

103+104+

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

105+

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

106+

providers: [elevenlabs, minimax],

107+

});

108+109+

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

110+

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

111+

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

112+

});

113+114+

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

115+

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

116+

providers: [elevenlabs, minimax],

117+

});

118+119+

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

120+

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

121+

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

122+

});

123+124+

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

125+

const result = parseTtsDirectives(

126+

"[[tts:provider=elevenlabs provider=minimax speed=1.1]]",

127+

fullPolicy,

128+

{ providers: [elevenlabs, minimax] },

129+

);

130+131+

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

132+

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

133+

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

134+

});

135+136+

it("ignores provider tokens when provider overrides are disabled", () => {

137+

const policy: SpeechModelOverridePolicy = { ...fullPolicy, allowProvider: false };

138+

const result = parseTtsDirectives("[[tts:provider=elevenlabs speed=1.2]]", policy, {

139+

providers: [elevenlabs, minimax],

140+

preferredProviderId: "minimax",

141+

});

142+143+

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

144+

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

145+

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

146+

});

147+

});