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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
U
Unit 42
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
I
InfoQ
WordPress大学
WordPress大学
H
Help Net Security
D
Docker
B
Blog
腾讯CDC
A
About on SuperTechFans
Recent Announcements
Recent Announcements
雷峰网
雷峰网
有赞技术团队
有赞技术团队
C
Check Point Blog
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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(azure-speech): bound generated speech downloads · ope...
vincentkoc · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -185,6 +185,7 @@ describe("buildAzureSpeechProvider", () => {

185185

lang: "en-US",

186186

outputFormat: "ogg-24khz-16bit-mono-opus",

187187

timeoutMs: 30_000,

188+

maxBytes: 16 * 1024 * 1024,

188189

});

189190

expect(result).toEqual({

190191

audioBuffer: Buffer.from("audio-bytes"),

@@ -222,6 +223,7 @@ describe("buildAzureSpeechProvider", () => {

222223

lang: "es-US",

223224

outputFormat: "raw-8khz-8bit-mono-mulaw",

224225

timeoutMs: 30_000,

226+

maxBytes: 16 * 1024 * 1024,

225227

});

226228

expect(result).toEqual({

227229

audioBuffer: Buffer.from("audio-bytes"),

@@ -230,6 +232,34 @@ describe("buildAzureSpeechProvider", () => {

230232

});

231233

});

232234
235+

it("applies the configured media byte cap to synthesis requests", async () => {

236+

const provider = buildAzureSpeechProvider();

237+
238+

await provider.synthesize({

239+

text: "hello",

240+

cfg: {

241+

agents: {

242+

defaults: {

243+

mediaMaxMb: 2,

244+

},

245+

},

246+

} as never,

247+

providerConfig: {

248+

apiKey: "key",

249+

region: "eastus",

250+

voice: "en-US-JennyNeural",

251+

},

252+

target: "audio-file",

253+

timeoutMs: 30_000,

254+

});

255+
256+

expect(azureSpeechTTSMock).toHaveBeenCalledWith(

257+

expect.objectContaining({

258+

maxBytes: 2 * 1024 * 1024,

259+

}),

260+

);

261+

});

262+
233263

it("lists voices through config or explicit request auth", async () => {

234264

const provider = buildAzureSpeechProvider();

235265

const voices = await provider.listVoices?.({

Original file line numberDiff line numberDiff line change

@@ -19,6 +19,8 @@ import {

1919

normalizeAzureSpeechBaseUrl,

2020

} from "./tts.js";

2121
22+

const DEFAULT_GENERATED_AUDIO_MAX_BYTES = 16 * 1024 * 1024;

23+
2224

type AzureSpeechProviderConfig = {

2325

apiKey?: string;

2426

region?: string;

@@ -177,6 +179,16 @@ function resolveTimeoutMs(config: AzureSpeechProviderConfig, timeoutMs: number):

177179

return config.timeoutMs ?? timeoutMs;

178180

}

179181
182+

function resolveGeneratedAudioMaxBytes(req: {

183+

cfg: { agents?: { defaults?: { mediaMaxMb?: number } } };

184+

}): number {

185+

const configured = req.cfg.agents?.defaults?.mediaMaxMb;

186+

if (typeof configured === "number" && Number.isFinite(configured) && configured > 0) {

187+

return Math.floor(configured * 1024 * 1024);

188+

}

189+

return DEFAULT_GENERATED_AUDIO_MAX_BYTES;

190+

}

191+
180192

export function buildAzureSpeechProvider(): SpeechProviderPlugin {

181193

return {

182194

id: "azure-speech",

@@ -269,6 +281,7 @@ export function buildAzureSpeechProvider(): SpeechProviderPlugin {

269281

lang: overrides.lang ?? config.lang,

270282

outputFormat,

271283

timeoutMs: resolveTimeoutMs(config, req.timeoutMs),

284+

maxBytes: resolveGeneratedAudioMaxBytes(req),

272285

});

273286

return {

274287

audioBuffer,

@@ -295,6 +308,7 @@ export function buildAzureSpeechProvider(): SpeechProviderPlugin {

295308

lang: overrides.lang ?? config.lang,

296309

outputFormat: DEFAULT_AZURE_SPEECH_TELEPHONY_FORMAT,

297310

timeoutMs: resolveTimeoutMs(config, req.timeoutMs),

311+

maxBytes: resolveGeneratedAudioMaxBytes(req),

298312

});

299313

return {

300314

audioBuffer,

Original file line numberDiff line numberDiff line change

@@ -12,6 +12,31 @@ import {

1212

describe("azure speech tts", () => {

1313

installPinnedHostnameTestHooks();

1414
15+

function createStreamingAudioResponse(params: {

16+

chunkCount: number;

17+

chunkSize: number;

18+

byte: number;

19+

}): { response: Response; getReadCount: () => number } {

20+

let reads = 0;

21+

const stream = new ReadableStream<Uint8Array>({

22+

pull(controller) {

23+

if (reads >= params.chunkCount) {

24+

controller.close();

25+

return;

26+

}

27+

reads += 1;

28+

controller.enqueue(new Uint8Array(params.chunkSize).fill(params.byte));

29+

},

30+

});

31+

return {

32+

response: new Response(stream, {

33+

status: 200,

34+

headers: { "Content-Type": "audio/mpeg" },

35+

}),

36+

getReadCount: () => reads,

37+

};

38+

}

39+
1540

afterEach(() => {

1641

vi.unstubAllGlobals();

1742

vi.restoreAllMocks();

@@ -82,6 +107,30 @@ describe("azure speech tts", () => {

82107

expect(init.signal).toBeInstanceOf(AbortSignal);

83108

});

84109
110+

it("caps streamed audio responses instead of buffering oversized TTS output", async () => {

111+

const streamed = createStreamingAudioResponse({

112+

chunkCount: 20,

113+

chunkSize: 1024,

114+

byte: 121,

115+

});

116+

vi.stubGlobal("fetch", vi.fn().mockResolvedValue(streamed.response));

117+
118+

await expect(

119+

azureSpeechTTS({

120+

text: "hello",

121+

apiKey: "speech-key",

122+

region: "eastus",

123+

voice: "en-US-JennyNeural",

124+

lang: "en-US",

125+

outputFormat: "audio-24khz-48kbitrate-mono-mp3",

126+

timeoutMs: 1234,

127+

maxBytes: 2048,

128+

}),

129+

).rejects.toThrow("Azure Speech TTS audio response exceeds 2048 bytes");

130+
131+

expect(streamed.getReadCount()).toBeLessThan(20);

132+

});

133+
85134

it("lists voices with timeout and filters deprecated entries", async () => {

86135

const fetchMock = vi.fn().mockResolvedValue(

87136

new Response(

Original file line numberDiff line numberDiff line change

@@ -1,4 +1,5 @@

11

import { assertOkOrThrowProviderError } from "openclaw/plugin-sdk/provider-http";

2+

import { readResponseWithLimit } from "openclaw/plugin-sdk/response-limit-runtime";

23

import type { SpeechVoiceOption } from "openclaw/plugin-sdk/speech-core";

34

import { trimToUndefined } from "openclaw/plugin-sdk/speech-core";

45

import {

@@ -11,6 +12,7 @@ export const DEFAULT_AZURE_SPEECH_LANG = "en-US";

1112

export const DEFAULT_AZURE_SPEECH_AUDIO_FORMAT = "audio-24khz-48kbitrate-mono-mp3";

1213

export const DEFAULT_AZURE_SPEECH_VOICE_NOTE_FORMAT = "ogg-24khz-16bit-mono-opus";

1314

export const DEFAULT_AZURE_SPEECH_TELEPHONY_FORMAT = "raw-8khz-8bit-mono-mulaw";

15+

const DEFAULT_AZURE_SPEECH_MAX_BYTES = 16 * 1024 * 1024;

1416
1517

type AzureSpeechVoiceEntry = {

1618

ShortName?: string;

@@ -175,6 +177,7 @@ export async function azureSpeechTTS(params: {

175177

lang?: string;

176178

outputFormat?: string;

177179

timeoutMs?: number;

180+

maxBytes?: number;

178181

}): Promise<Buffer> {

179182

const voice = trimToUndefined(params.voice) ?? DEFAULT_AZURE_SPEECH_VOICE;

180183

const outputFormat = trimToUndefined(params.outputFormat) ?? DEFAULT_AZURE_SPEECH_AUDIO_FORMAT;

@@ -202,7 +205,14 @@ export async function azureSpeechTTS(params: {

202205
203206

try {

204207

await assertOkOrThrowProviderError(response, "Azure Speech TTS API error");

205-

return Buffer.from(await response.arrayBuffer());

208+

return await readResponseWithLimit(

209+

response,

210+

params.maxBytes ?? DEFAULT_AZURE_SPEECH_MAX_BYTES,

211+

{

212+

onOverflow: ({ maxBytes }) =>

213+

new Error(`Azure Speech TTS audio response exceeds ${maxBytes} bytes`),

214+

},

215+

);

206216

} finally {

207217

await release();

208218

}