File size: 14,199 Bytes
f778c12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 | import { createWriteStream } from "node:fs";
import fs from "node:fs/promises";
import path from "node:path";
import { Readable } from "node:stream";
import { pipeline } from "node:stream/promises";
import { extensionForMime, normalizeMimeType } from "@openclaw/media-core/mime";
import type { Command } from "commander";
import { resolveAgentDir } from "../../agents/agent-scope.js";
import {
assertOkOrThrowHttpError,
assertProviderBinaryResponseContent,
} from "../../agents/provider-http-errors.js";
import { resolveAgentModelPrimaryValue } from "../../config/model-input.js";
import type { OpenClawConfig } from "../../config/types.openclaw.js";
import { readResponseWithLimit } from "../../infra/http-body.js";
import { buildMediaUnderstandingRegistry } from "../../media-understanding/provider-registry.js";
import { describeVideoFile } from "../../media-understanding/runtime.js";
import { resolveGeneratedMediaMaxBytes } from "../../media/configured-max-bytes.js";
import {
fetchWithTimeoutGuarded,
resolveProviderHttpRequestConfig,
sanitizeConfiguredModelProviderRequest,
} from "../../plugin-sdk/provider-http.js";
import { defaultRuntime } from "../../runtime.js";
import {
generateVideo,
listRuntimeVideoGenerationProviders,
} from "../../video-generation/runtime.js";
import type { VideoGenerationResolution } from "../../video-generation/types.js";
import { runCommandWithRuntime } from "../cli-utils.js";
import { getModelsCommandSecretTargetIds } from "../command-secret-targets.js";
import { publishOutputFileAtomically, writeOutputAsset } from "../media-output.js";
import { prepareLocalCapabilityAccountSecrets } from "./local-account-secrets.js";
import type { CapabilityEnvelope } from "./metadata.js";
import { emitJsonOrText, formatEnvelopeForText } from "./output.js";
import {
parseOptionalFiniteNumber,
parseOptionalTimeoutMs,
providerHasGenericConfig,
registerLocalProvidersCommand,
requireProviderModelOverride,
resolveCapabilityAgentOption,
resolveCapabilityProviderAgentId,
resolveLocalCapabilityRuntimeConfig,
resolveSelectedProviderFromModelRef,
} from "./shared.js";
const GENERATED_VIDEO_DOWNLOAD_TIMEOUT_MS = 120_000;
function normalizeVideoResolution(raw: string | undefined): VideoGenerationResolution | undefined {
const normalized = raw?.trim().toUpperCase();
if (!normalized) {
return undefined;
}
if (
normalized === "360P" ||
normalized === "480P" ||
normalized === "540P" ||
normalized === "720P" ||
normalized === "768P" ||
normalized === "1080P"
) {
return normalized;
}
throw new Error("video resolution must be one of 360P, 480P, 540P, 720P, 768P, or 1080P");
}
async function fetchGeneratedVideoDownload(params: {
cfg: OpenClawConfig;
provider: string;
url: string;
}) {
const providerConfig = params.cfg.models?.providers?.[params.provider];
const { allowPrivateNetwork, dispatcherPolicy } = resolveProviderHttpRequestConfig({
baseUrl: params.url,
defaultBaseUrl: params.url,
request: sanitizeConfiguredModelProviderRequest(providerConfig?.request),
provider: params.provider,
capability: "video",
transport: "http",
});
const result = await fetchWithTimeoutGuarded(
params.url,
{ method: "GET" },
GENERATED_VIDEO_DOWNLOAD_TIMEOUT_MS,
fetch,
{
...(allowPrivateNetwork ? { ssrfPolicy: { allowPrivateNetwork: true } } : {}),
...(dispatcherPolicy ? { dispatcherPolicy } : {}),
auditContext: `${params.provider}-generated-video-download`,
},
);
try {
await assertOkOrThrowHttpError(
result.response,
`${params.provider} generated video download failed`,
);
assertProviderBinaryResponseContent(
result.response,
`${params.provider} generated video download`,
"video",
);
return result;
} catch (error) {
await result.release();
throw error;
}
}
async function runVideoGenerate(params: {
prompt: string;
model?: string;
output?: string;
size?: string;
aspectRatio?: string;
resolution?: VideoGenerationResolution;
durationSeconds?: number;
audio?: boolean;
watermark?: boolean;
timeoutMs?: number;
agent?: string;
}) {
requireProviderModelOverride(params.model);
const cfg = await resolveLocalCapabilityRuntimeConfig({
commandName: "infer video.generate",
targetIds: getModelsCommandSecretTargetIds(),
});
const agentId = resolveCapabilityProviderAgentId(cfg, params.agent, "infer video.generate");
await prepareLocalCapabilityAccountSecrets({ cfg, agentId });
const agentDir = resolveAgentDir(cfg, agentId);
const result = await generateVideo({
cfg,
agentDir,
prompt: params.prompt,
modelOverride: params.model,
size: params.size,
aspectRatio: params.aspectRatio,
resolution: params.resolution,
durationSeconds: params.durationSeconds,
audio: params.audio,
watermark: params.watermark,
timeoutMs: params.timeoutMs,
});
const outputs = await Promise.all(
result.videos.map(async (video, index) => {
if (!video.buffer && !video.url) {
throw new Error(`Video asset at index ${index} has neither buffer nor url`);
}
let videoBuffer = video.buffer;
if (!videoBuffer && video.url) {
const download = await fetchGeneratedVideoDownload({
cfg,
provider: result.provider,
url: video.url,
});
const response = download.response;
try {
if (params.output && response.body) {
const mimeType = normalizeMimeType(video.mimeType);
const ext =
extensionForMime(mimeType) ||
path.extname(video.fileName ?? "") ||
path.extname(params.output);
const resolvedOutput = path.resolve(params.output);
const parsed = path.parse(resolvedOutput);
const filePath =
result.videos.length <= 1
? path.join(parsed.dir, `${parsed.name}${ext}`)
: path.join(parsed.dir, `${parsed.name}-${String(index + 1)}${ext}`);
const size = await publishOutputFileAtomically({
filePath,
writeTemp: async (tempPath) => {
await pipeline(
Readable.fromWeb(
response.body as import("node:stream/web").ReadableStream<Uint8Array>,
),
createWriteStream(tempPath, { flags: "wx" }),
);
const writtenSize = (await fs.stat(tempPath)).size;
if (writtenSize === 0) {
throw new Error("Generated media output is empty.");
}
return writtenSize;
},
});
return { path: filePath, mimeType: video.mimeType, size };
}
// Provider-supplied video URLs are untrusted external sources, and the
// in-memory fallback (no --output) must not buffer an unbounded body:
// generated videos routinely exceed tens of MiB and a hostile/buggy
// provider could exhaust process memory. Cap the read (fail-closed:
// overflow cancels the stream and throws rather than silently
// truncating) using the same shared bounded reader the rest of the
// media stack relies on. The --output branch above already streams
// straight to disk, so only this buffered path needs the guard. The
// overflow error reports only the provider label and byte cap (never
// the raw URL, which may be signed/tokenized) to match the sibling
// generated-media downloaders.
const videoMaxBytes = resolveGeneratedMediaMaxBytes(cfg, "video");
videoBuffer = await readResponseWithLimit(response, videoMaxBytes, {
onOverflow: ({ maxBytes }) =>
new Error(
`${result.provider} generated video download exceeds ${maxBytes} bytes; pass --output to stream large videos to disk`,
),
});
if (videoBuffer.byteLength === 0) {
throw new Error("Generated media output is empty.");
}
} finally {
await download.release();
}
}
return {
...(await writeOutputAsset({
buffer: videoBuffer!,
mimeType: video.mimeType,
originalFilename: video.fileName,
outputPath: params.output,
outputIndex: index,
outputCount: result.videos.length,
subdir: "generated",
})),
};
}),
);
return {
ok: true,
capability: "video.generate",
transport: "local" as const,
provider: result.provider,
model: result.model,
attempts: result.attempts,
outputs,
} satisfies CapabilityEnvelope;
}
async function runVideoDescribe(params: { file: string; model?: string; agent?: string }) {
const cfg = await resolveLocalCapabilityRuntimeConfig({
commandName: "infer video.describe",
targetIds: getModelsCommandSecretTargetIds(),
});
const agentId = resolveCapabilityProviderAgentId(cfg, params.agent, "infer video describe");
await prepareLocalCapabilityAccountSecrets({ cfg, agentId });
const agentDir = resolveAgentDir(cfg, agentId);
const activeModel = requireProviderModelOverride(params.model);
const result = await describeVideoFile({
filePath: path.resolve(params.file),
cfg,
agentId,
agentDir,
activeModel,
});
if (!result.text) {
throw new Error(`No description returned for video: ${path.resolve(params.file)}`);
}
return {
ok: true,
capability: "video.describe",
transport: "local" as const,
provider: result.provider,
model: result.model,
attempts: [],
outputs: [{ path: path.resolve(params.file), text: result.text, kind: "video.description" }],
} satisfies CapabilityEnvelope;
}
export function registerVideoCapabilityCommands(capability: Command): void {
const video = capability
.command("video")
.description("Video generation and description")
.option("--agent <id>", "Agent whose model and auth state should be used");
video
.command("generate")
.description("Generate video")
.requiredOption("--prompt <text>", "Prompt text")
.option("--model <provider/model>", "Model override")
.option("--size <size>", "Size hint like 1280x720")
.option("--aspect-ratio <ratio>", "Aspect ratio hint like 16:9")
.option("--resolution <value>", "Resolution hint: 360P, 480P, 540P, 720P, 768P, or 1080P")
.option("--duration <seconds>", "Target duration in seconds")
.option("--audio", "Enable generated audio when supported")
.option("--watermark", "Request provider watermark when supported")
.option("--timeout-ms <ms>", "Provider request timeout in milliseconds")
.option("--output <path>", "Output path")
.option(
"--agent <id>",
"Agent whose saved provider auth is used (default: agents.defaults.systemAgent.agentId, then the sole agent)",
)
.option("--json", "Output JSON", false)
.action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const result = await runVideoGenerate({
prompt: String(opts.prompt),
agent: resolveCapabilityAgentOption(command, opts.agent),
model: opts.model as string | undefined,
output: opts.output as string | undefined,
size: opts.size as string | undefined,
aspectRatio: opts.aspectRatio as string | undefined,
resolution: normalizeVideoResolution(opts.resolution as string | undefined),
durationSeconds: parseOptionalFiniteNumber(opts.duration, "--duration"),
audio: opts.audio === true ? true : undefined,
watermark: opts.watermark === true ? true : undefined,
timeoutMs: parseOptionalTimeoutMs(opts.timeoutMs),
});
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, formatEnvelopeForText);
});
});
video
.command("describe")
.description("Describe one video file")
.requiredOption("--file <path>", "Video file")
.option("--agent <id>", "Agent whose model and auth state should be used")
.option("--model <provider/model>", "Model override")
.option("--json", "Output JSON", false)
.action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const result = await runVideoDescribe({
file: String(opts.file),
agent: resolveCapabilityAgentOption(command, opts.agent),
model: opts.model as string | undefined,
});
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, formatEnvelopeForText);
});
});
registerLocalProvidersCommand(
video,
"List video generation and description providers",
(cfg, agentId) => {
const selectedGenerationProvider = resolveSelectedProviderFromModelRef(
resolveAgentModelPrimaryValue(cfg.agents?.defaults?.mediaModels?.video),
);
return {
generation: listRuntimeVideoGenerationProviders({ config: cfg }).map((provider) => ({
available: true,
configured:
selectedGenerationProvider === provider.id ||
providerHasGenericConfig({ cfg, providerId: provider.id, agentId }),
selected: selectedGenerationProvider === provider.id,
id: provider.id,
label: provider.label,
defaultModel: provider.defaultModel,
models: provider.models ?? [],
capabilities: provider.capabilities,
})),
description: [...buildMediaUnderstandingRegistry(undefined, cfg).values()]
.filter((provider) => provider.capabilities?.includes("video"))
.map((provider) => ({
available: true,
configured: providerHasGenericConfig({ cfg, providerId: provider.id, agentId }),
selected: false,
id: provider.id,
capabilities: provider.capabilities,
defaultModels: provider.defaultModels,
})),
};
},
(value) => JSON.stringify(value, null, 2),
);
}
|