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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 三生石上(FineUI控件)
雷峰网
雷峰网
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
博客园 - 叶小钗
The Cloudflare Blog
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
小众软件
小众软件
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 聂微东
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享

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: normalize music generation timeouts · openclaw/openc...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -70,6 +70,7 @@ const log = createSubsystemLogger("agents/tools/music-generate");

7070

const MAX_INPUT_IMAGES = 10;

7171

const SUPPORTED_OUTPUT_FORMATS = new Set<MusicGenerationOutputFormat>(["mp3", "wav"]);

7272

const DEFAULT_REFERENCE_FETCH_TIMEOUT_MS = 30_000;

73+

const MIN_MUSIC_GENERATION_TIMEOUT_MS = 10_000;

73747475

const MusicGenerateToolSchema = Type.Object({

7576

action: Type.Optional(

@@ -112,7 +113,8 @@ const MusicGenerateToolSchema = Type.Object({

112113

),

113114

timeoutMs: Type.Optional(

114115

Type.Number({

115-

description: "Optional provider request timeout in milliseconds.",

116+

description:

117+

"Optional provider request timeout in milliseconds. Values below 10000ms are raised to 10000ms.",

116118

minimum: 1,

117119

}),

118120

),

@@ -231,6 +233,42 @@ type MusicGenerateSandboxConfig = {

231233232234

type MusicGenerateBackgroundScheduler = (work: () => Promise<void>) => void;

233235236+

type MusicGenerationTimeoutNormalization = {

237+

requested: number;

238+

applied: number;

239+

minimum: number;

240+

};

241+242+

function normalizeMusicGenerationTimeoutMs(timeoutMs: number | undefined): {

243+

timeoutMs?: number;

244+

normalization?: MusicGenerationTimeoutNormalization;

245+

message?: string;

246+

} {

247+

if (timeoutMs === undefined) {

248+

return {};

249+

}

250+

if (timeoutMs >= MIN_MUSIC_GENERATION_TIMEOUT_MS) {

251+

return { timeoutMs };

252+

}

253+254+

const normalization = {

255+

requested: timeoutMs,

256+

applied: MIN_MUSIC_GENERATION_TIMEOUT_MS,

257+

minimum: MIN_MUSIC_GENERATION_TIMEOUT_MS,

258+

};

259+

const message = `Timeout normalized: requested ${timeoutMs}ms; used ${MIN_MUSIC_GENERATION_TIMEOUT_MS}ms.`;

260+

log.warn("music_generate timeoutMs is below provider minimum; using minimum", {

261+

requestedTimeoutMs: timeoutMs,

262+

appliedTimeoutMs: MIN_MUSIC_GENERATION_TIMEOUT_MS,

263+

minimumTimeoutMs: MIN_MUSIC_GENERATION_TIMEOUT_MS,

264+

});

265+

return {

266+

timeoutMs: MIN_MUSIC_GENERATION_TIMEOUT_MS,

267+

normalization,

268+

message,

269+

};

270+

}

271+234272

function defaultScheduleMusicGenerateBackgroundWork(work: () => Promise<void>) {

235273

queueMicrotask(() => {

236274

void work().catch((error) => {

@@ -369,6 +407,7 @@ async function executeMusicGenerationJob(params: {

369407

loadedReferenceImages: LoadedReferenceImage[];

370408

taskHandle?: MusicGenerationTaskHandle | null;

371409

timeoutMs?: number;

410+

timeoutNormalization?: MusicGenerationTimeoutNormalization;

372411

}): Promise<ExecutedMusicGeneration> {

373412

if (params.taskHandle) {

374413

recordMusicGenerationTaskProgress({

@@ -432,6 +471,11 @@ async function executeMusicGenerationJob(params: {

432471

const lines = [

433472

`Generated ${savedTracks.length} track${savedTracks.length === 1 ? "" : "s"} with ${result.provider}/${result.model}.`,

434473

...(warning ? [`Warning: ${warning}`] : []),

474+

...(params.timeoutNormalization

475+

? [

476+

`Timeout normalized: requested ${params.timeoutNormalization.requested}ms; used ${params.timeoutNormalization.applied}ms.`,

477+

]

478+

: []),

435479

typeof requestedDurationSeconds === "number" &&

436480

typeof appliedDurationSeconds === "number" &&

437481

requestedDurationSeconds !== appliedDurationSeconds

@@ -472,6 +516,12 @@ async function executeMusicGenerationJob(params: {

472516

...(!ignoredOverrideKeys.has("format") && params.format ? { format: params.format } : {}),

473517

...(params.filename ? { filename: params.filename } : {}),

474518

...(params.timeoutMs !== undefined ? { timeoutMs: params.timeoutMs } : {}),

519+

...(params.timeoutNormalization

520+

? {

521+

requestedTimeoutMs: params.timeoutNormalization.requested,

522+

timeoutNormalization: params.timeoutNormalization,

523+

}

524+

: {}),

475525

...buildMediaReferenceDetails({

476526

entries: params.loadedReferenceImages,

477527

singleKey: "image",

@@ -570,7 +620,9 @@ export function createMusicGenerateTool(options?: {

570620

});

571621

const format = normalizeOutputFormat(readStringParam(args, "format"));

572622

const filename = readStringParam(args, "filename");

573-

const timeoutMs = readGenerationTimeoutMs(args);

623+

const requestedTimeoutMs = readGenerationTimeoutMs(args);

624+

const timeout = normalizeMusicGenerationTimeoutMs(requestedTimeoutMs);

625+

const timeoutMs = timeout.timeoutMs;

574626

const imageInputs = normalizeReferenceImageInputs(args);

575627

const selectedProvider = resolveSelectedMusicGenerationProvider({

576628

config: effectiveCfg,

@@ -623,6 +675,7 @@ export function createMusicGenerateTool(options?: {

623675

loadedReferenceImages,

624676

taskHandle,

625677

timeoutMs,

678+

timeoutNormalization: timeout.normalization,

626679

}),

627680

});

628681

completeMusicGenerationTaskRun({

@@ -668,7 +721,12 @@ export function createMusicGenerateTool(options?: {

668721

content: [

669722

{

670723

type: "text",

671-

text: `Background task started for music generation (${taskHandle?.taskId ?? "unknown"}). Do not call music_generate again for this request. Wait for the completion event; I'll post the finished music here when it's ready.`,

724+

text: [

725+

`Background task started for music generation (${taskHandle?.taskId ?? "unknown"}). Do not call music_generate again for this request. Wait for the completion event; I'll post the finished music here when it's ready.`,

726+

timeout.message,

727+

]

728+

.filter((entry): entry is string => Boolean(entry))

729+

.join("\n"),

672730

},

673731

],

674732

details: {

@@ -688,6 +746,13 @@ export function createMusicGenerateTool(options?: {

688746

...(format ? { format } : {}),

689747

...(filename ? { filename } : {}),

690748

...(timeoutMs !== undefined ? { timeoutMs } : {}),

749+

...(timeout.normalization

750+

? {

751+

requestedTimeoutMs: timeout.normalization.requested,

752+

timeoutNormalization: timeout.normalization,

753+

warning: timeout.message,

754+

}

755+

: {}),

691756

},

692757

};

693758

}

@@ -706,6 +771,7 @@ export function createMusicGenerateTool(options?: {

706771

loadedReferenceImages,

707772

taskHandle,

708773

timeoutMs,

774+

timeoutNormalization: timeout.normalization,

709775

});

710776

completeMusicGenerationTaskRun({

711777

handle: taskHandle,