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

推荐订阅源

腾讯CDC
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
Jina AI
Jina AI
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks

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(minimax): stream music generation responses (#84764) ...
clawsweeper · 2026-05-29 · via Recent Commits to openclaw:main

@@ -28,10 +28,11 @@ beforeAll(async () => {

2828

installMinimaxProviderHttpMockCleanup();

29293030

function mockMusicGenerationResponse(json: Record<string, unknown>): void {

31+

const response = new Response(JSON.stringify(json), {

32+

headers: { "content-type": "application/json" },

33+

});

3134

postJsonRequestMock.mockResolvedValue({

32-

response: {

33-

json: async () => json,

34-

},

35+

response,

3536

release: vi.fn(async () => {}),

3637

});

3738

fetchWithTimeoutMock.mockResolvedValue({

@@ -53,12 +54,22 @@ describe("minimax music generation provider", () => {

5354

expectExplicitMusicGenerationCapabilities(buildMinimaxMusicGenerationProvider());

5455

});

555656-

it("creates music and downloads the generated track", async () => {

57-

mockMusicGenerationResponse({

58-

task_id: "task-123",

59-

audio_url: "https://example.com/out.mp3",

60-

lyrics: "our city wakes",

61-

base_resp: { status_code: 0 },

57+

it("streams generated music chunks from MiniMax", async () => {

58+

const chunkA = Buffer.from("ID3\x04\x00mp3-a");

59+

const chunkB = Buffer.from("mp3-b");

60+

postJsonRequestMock.mockResolvedValue({

61+

response: new Response(

62+

[

63+

`data: ${JSON.stringify({ data: { status: 1, audio: chunkA.toString("hex") }, base_resp: { status_code: 0 } })}`,

64+

`data: ${JSON.stringify({ data: { status: 1, audio: chunkB.toString("hex") }, base_resp: { status_code: 0 } })}`,

65+

`data: ${JSON.stringify({ data: { status: 2, audio: Buffer.concat([chunkA, chunkB]).toString("hex") }, base_resp: { status_code: 0 } })}`,

66+

"",

67+

].join("\n\n"),

68+

{

69+

headers: { "content-type": "text/event-stream" },

70+

},

71+

),

72+

release: vi.fn(async () => {}),

6273

});

63746475

const provider = buildMinimaxMusicGenerationProvider();

@@ -79,24 +90,81 @@ describe("minimax music generation provider", () => {

7990

expect(body.prompt).not.toContain("Target duration");

8091

expect(body).not.toHaveProperty("duration");

8192

expect(body.lyrics).toBe("our city wakes");

82-

expect(body.output_format).toBe("url");

93+

expect(body.stream).toBe(true);

94+

expect(body.output_format).toBe("hex");

8395

expect(body.audio_setting).toEqual({

8496

sample_rate: 44100,

8597

bitrate: 256000,

8698

format: "mp3",

8799

});

100+

expect(request.timeoutMs).toBe(300000);

88101

expect(request?.headers).toBeInstanceOf(Headers);

89102

const headers = request?.headers as Headers | undefined;

90103

expect(headers?.get("content-type")).toBe("application/json");

91104

expect(result.tracks).toHaveLength(1);

92-

expect(result.lyrics).toEqual(["our city wakes"]);

93-

expect(result.metadata?.taskId).toBe("task-123");

94-

expect(result.metadata?.audioUrl).toBe("https://example.com/out.mp3");

105+

expect(result.tracks[0]?.buffer).toEqual(Buffer.concat([chunkA, chunkB]));

106+

expect(result.tracks[0]?.mimeType).toBe("audio/mpeg");

107+

expect(result.metadata?.requestedLyrics).toBe(true);

95108

expect(result.metadata).not.toHaveProperty("requestedDurationSeconds");

96109

});

97110111+

it("reports streaming music task failures", async () => {

112+

postJsonRequestMock.mockResolvedValue({

113+

response: new Response(

114+

`data: ${JSON.stringify({

115+

base_resp: { status_code: 0 },

116+

})}\n\ndata: ${JSON.stringify({

117+

base_resp: { status_code: 2013, status_msg: "render rejected" },

118+

})}`,

119+

{

120+

headers: { "content-type": "text/event-stream" },

121+

},

122+

),

123+

release: vi.fn(async () => {}),

124+

});

125+126+

const provider = buildMinimaxMusicGenerationProvider();

127+128+

await expect(

129+

provider.generateMusic({

130+

provider: "minimax",

131+

model: "music-2.6",

132+

prompt: "upbeat dance-pop with female vocals",

133+

cfg: {},

134+

}),

135+

).rejects.toThrow("MiniMax music generation failed (2013): render rejected");

136+

});

137+138+

it("keeps terminal streaming audio when no progressive chunks were sent", async () => {

139+

const terminalAudio = Buffer.from("terminal-mp3");

140+

postJsonRequestMock.mockResolvedValue({

141+

response: new Response(

142+

`data: ${JSON.stringify({

143+

data: { status: 2, audio: terminalAudio.toString("hex") },

144+

base_resp: { status_code: 0 },

145+

})}`,

146+

{

147+

headers: { "content-type": "text/event-stream" },

148+

},

149+

),

150+

release: vi.fn(async () => {}),

151+

});

152+153+

const provider = buildMinimaxMusicGenerationProvider();

154+

const result = await provider.generateMusic({

155+

provider: "minimax",

156+

model: "music-2.6",

157+

prompt: "upbeat dance-pop with female vocals",

158+

cfg: {},

159+

});

160+161+

expect(result.tracks[0]?.buffer).toEqual(terminalAudio);

162+

});

163+98164

it("downloads tracks when url output is returned in data.audio", async () => {

99165

mockMusicGenerationResponse({

166+

task_id: "task-url",

167+

lyrics: "our city wakes",

100168

data: {

101169

audio: "https://example.com/url-audio.mp3",

102170

},

@@ -119,6 +187,90 @@ describe("minimax music generation provider", () => {

119187

fetch,

120188

);

121189

expect(result.tracks[0]?.buffer.byteLength).toBeGreaterThan(0);

190+

expect(result.lyrics).toEqual(["our city wakes"]);

191+

expect(result.metadata?.taskId).toBe("task-url");

192+

expect(result.metadata?.audioUrl).toBe("https://example.com/url-audio.mp3");

193+

});

194+195+

it("honors explicit long caller timeouts for request and download fallbacks", async () => {

196+

mockMusicGenerationResponse({

197+

data: {

198+

audio: "https://example.com/long-timeout.mp3",

199+

},

200+

base_resp: { status_code: 0 },

201+

});

202+203+

const provider = buildMinimaxMusicGenerationProvider();

204+

await provider.generateMusic({

205+

provider: "minimax",

206+

model: "music-2.6",

207+

prompt: "upbeat dance-pop with female vocals",

208+

cfg: {},

209+

lyrics: "our city wakes",

210+

timeoutMs: 600000,

211+

});

212+213+

expect(mockCallArg(postJsonRequestMock).timeoutMs).toBe(600000);

214+

expect(fetchWithTimeoutMock).toHaveBeenCalledWith(

215+

"https://example.com/long-timeout.mp3",

216+

{ method: "GET" },

217+

600000,

218+

fetch,

219+

);

220+

});

221+222+

it("applies explicit caller timeouts while reading streaming response bodies", async () => {

223+

vi.useFakeTimers();

224+

try {

225+

let cancelled = false;

226+

const stream = new ReadableStream<Uint8Array>({

227+

start(controller) {

228+

setTimeout(() => {

229+

if (cancelled) {

230+

return;

231+

}

232+

controller.enqueue(

233+

new TextEncoder().encode(

234+

`data: ${JSON.stringify({

235+

data: { status: 2, audio: Buffer.from("late-mp3").toString("hex") },

236+

base_resp: { status_code: 0 },

237+

})}`,

238+

),

239+

);

240+

controller.close();

241+

}, 200);

242+

},

243+

cancel() {

244+

cancelled = true;

245+

},

246+

});

247+

postJsonRequestMock.mockResolvedValue({

248+

response: new Response(stream, {

249+

headers: { "content-type": "text/event-stream" },

250+

}),

251+

release: vi.fn(async () => {}),

252+

});

253+254+

const provider = buildMinimaxMusicGenerationProvider();

255+

const generation = provider.generateMusic({

256+

provider: "minimax",

257+

model: "music-2.6",

258+

prompt: "upbeat dance-pop with female vocals",

259+

cfg: {},

260+

timeoutMs: 50,

261+

});

262+

const expectation = expect(generation).rejects.toThrow(

263+

"MiniMax music generation timed out after 50ms",

264+

);

265+266+

await vi.advanceTimersByTimeAsync(0);

267+

await vi.advanceTimersByTimeAsync(50);

268+269+

await expectation;

270+

expect(cancelled).toBe(true);

271+

} finally {

272+

vi.useRealTimers();

273+

}

122274

});

123275124276

it("rejects instrumental requests that also include lyrics", async () => {