File size: 15,177 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 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 | import path from "node:path";
import { detectMime } from "@openclaw/media-core/mime";
import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";
import type { Command } from "commander";
import { resolveAgentDir } from "../../agents/agent-scope.js";
import { runWithImageModelFallback } from "../../agents/model-fallback-image.js";
import { resolveAgentModelPrimaryValue } from "../../config/model-input.js";
import {
generateImage,
listRuntimeImageGenerationProviders,
} from "../../image-generation/runtime.js";
import type {
ImageGenerationBackground,
ImageGenerationOpenAIModeration,
ImageGenerationOutputFormat,
ImageGenerationQuality,
} from "../../image-generation/types.js";
import {
describeImageFile,
describePreparedImageWithModel,
prepareImageDescriptionInput,
} from "../../media-understanding/runtime.js";
import { getImageMetadata } from "../../media/media-services.js";
import { defaultRuntime } from "../../runtime.js";
import { createEnumOptionParser } from "../../shared/enum-option.js";
import { runCommandWithRuntime } from "../cli-utils.js";
import { getModelsCommandSecretTargetIds } from "../command-secret-targets.js";
import { readInputFiles, writeOutputAsset } from "../media-output.js";
import { collectOption } from "../program/helpers.js";
import { prepareLocalCapabilityAccountSecrets } from "./local-account-secrets.js";
import { isMissingMediaUnderstandingProvider } from "./media-understanding-result.js";
import type { CapabilityEnvelope } from "./metadata.js";
import { emitJsonOrText, formatEnvelopeForText, providerSummaryText } from "./output.js";
import {
parseOptionalPositiveInteger,
parseOptionalTimeoutMs,
providerHasGenericConfig,
registerLocalProvidersCommand,
requireProviderModelOverride,
resolveCapabilityAgentOption,
resolveCapabilityProviderAgentId,
resolveLocalCapabilityRuntimeConfig,
resolveSelectedProviderFromModelRef,
} from "./shared.js";
const IMAGE_OUTPUT_FORMATS = ["png", "jpeg", "webp"] as const;
const IMAGE_BACKGROUNDS = ["transparent", "opaque", "auto"] as const;
const IMAGE_QUALITIES = ["low", "medium", "high", "xhigh", "max", "auto"] as const;
const IMAGE_MODERATIONS = ["low", "auto"] as const;
const parseImageOption = createEnumOptionParser();
async function runImageGenerate(params: {
capability: "image.generate" | "image.edit";
prompt: string;
model?: string;
count?: number;
size?: string;
aspectRatio?: string;
resolution?: "1K" | "2K" | "4K";
outputFormat?: ImageGenerationOutputFormat;
background?: ImageGenerationBackground;
openaiBackground?: ImageGenerationBackground;
openaiModeration?: ImageGenerationOpenAIModeration;
quality?: ImageGenerationQuality;
file?: string[];
output?: string;
timeoutMs?: number;
agent?: string;
}) {
requireProviderModelOverride(params.model);
const cfg = await resolveLocalCapabilityRuntimeConfig({
commandName: `infer ${params.capability}`,
targetIds: getModelsCommandSecretTargetIds(),
});
const agentId = resolveCapabilityProviderAgentId(cfg, params.agent, `infer ${params.capability}`);
await prepareLocalCapabilityAccountSecrets({ cfg, agentId });
const agentDir = resolveAgentDir(cfg, agentId);
const inputImages =
params.file && params.file.length > 0
? await Promise.all(
(await readInputFiles(params.file)).map(async (entry) => ({
buffer: entry.buffer,
fileName: path.basename(entry.path),
mimeType:
(await detectMime({ buffer: entry.buffer, filePath: entry.path })) ?? "image/png",
})),
)
: undefined;
const result = await generateImage({
cfg,
agentDir,
prompt: params.prompt,
modelOverride: params.model,
count: params.count,
size: params.size,
aspectRatio: params.aspectRatio,
resolution: params.resolution,
quality: params.quality,
outputFormat: params.outputFormat,
background: params.background,
providerOptions:
params.openaiBackground || params.openaiModeration
? {
openai: {
...(params.openaiBackground ? { background: params.openaiBackground } : {}),
...(params.openaiModeration ? { moderation: params.openaiModeration } : {}),
},
}
: undefined,
timeoutMs: params.timeoutMs,
inputImages,
});
const outputs = await Promise.all(
result.images.map(async (image, index) => {
const written = await writeOutputAsset({
buffer: image.buffer,
mimeType: image.mimeType,
originalFilename: image.fileName,
outputPath: params.output,
outputIndex: index,
outputCount: result.images.length,
subdir: "generated",
});
const metadata = await getImageMetadata(image.buffer).catch(() => undefined);
return {
...written,
width: metadata?.width,
height: metadata?.height,
revisedPrompt: image.revisedPrompt,
};
}),
);
return {
ok: true,
capability: params.capability,
transport: "local" as const,
provider: result.provider,
model: result.model,
attempts: result.attempts,
outputs,
ignoredOverrides: result.ignoredOverrides,
} satisfies CapabilityEnvelope;
}
async function runImageDescribe(params: {
capability: "image.describe" | "image.describe-many";
files: string[];
model?: string;
prompt?: string;
timeoutMs?: number;
agent?: string;
}) {
const cfg = await resolveLocalCapabilityRuntimeConfig({
commandName: `infer ${params.capability}`,
targetIds: getModelsCommandSecretTargetIds(),
});
const agentId = resolveCapabilityProviderAgentId(cfg, params.agent, `infer ${params.capability}`);
await prepareLocalCapabilityAccountSecrets({ cfg, agentId });
const agentDir = resolveAgentDir(cfg, agentId);
const activeModel = requireProviderModelOverride(params.model);
const prompt = normalizeOptionalString(params.prompt);
const outputs = await Promise.all(
params.files.map(async (filePath) => {
const resolvedPath = resolveImageDescribeInput(filePath);
const isRemoteUrl = /^https?:\/\//i.test(resolvedPath);
const preparedImage = activeModel
? await prepareImageDescriptionInput({
filePath: resolvedPath,
...(isRemoteUrl ? { mediaUrl: resolvedPath } : {}),
cfg,
timeoutMs: params.timeoutMs,
})
: undefined;
const result =
activeModel && preparedImage
? await runWithImageModelFallback({
cfg,
modelOverride: `${activeModel.provider}/${activeModel.model}`,
run: async (provider, model) => {
const described = await describePreparedImageWithModel({
image: preparedImage,
cfg,
agentId,
agentDir,
provider,
model,
prompt: prompt ?? "Describe the image.",
timeoutMs: params.timeoutMs,
});
if (!described.text?.trim()) {
throw new Error(`No description returned for image: ${resolvedPath}`);
}
return described;
},
})
: {
result: await describeImageFile({
filePath: resolvedPath,
...(isRemoteUrl ? { mediaUrl: resolvedPath } : {}),
cfg,
agentId,
agentDir,
prompt,
timeoutMs: params.timeoutMs,
}),
provider: undefined,
model: undefined,
attempts: [],
};
if (!result.result.text) {
if (isMissingMediaUnderstandingProvider(result.result)) {
throw new Error(
"No image understanding provider is configured or ready. Configure an image-capable tools.media.models entry or agents.defaults.imageModel.primary, or pass --model <provider/model> after configuring that provider's auth/API key.",
);
}
throw new Error(`No description returned for image: ${resolvedPath}`);
}
return {
path: resolvedPath,
text: result.result.text,
provider: result.provider ?? result.result.provider,
model: result.result.model ?? result.model,
attempts: result.attempts,
kind: "image.description",
};
}),
);
return {
ok: true,
capability: params.capability,
transport: "local" as const,
provider: outputs[0]?.provider,
model: outputs[0]?.model,
attempts: outputs.flatMap((output) => output.attempts),
outputs: outputs.map(({ attempts: _attempts, ...output }) => output),
} satisfies CapabilityEnvelope;
}
function resolveImageDescribeInput(filePath: string): string {
const trimmed = filePath.trim();
return /^https?:\/\//i.test(trimmed) ? trimmed : path.resolve(filePath);
}
function addImageGenerationOptions(command: Command): Command {
return command
.option("--model <provider/model>", "Model override")
.option("--count <n>", "Number of images")
.option("--size <size>", "Size hint like 1024x1024")
.option("--aspect-ratio <ratio>", "Aspect ratio hint like 16:9")
.option("--resolution <value>", "Resolution hint: 1K, 2K, or 4K")
.option("--output-format <format>", "Output format hint: png, jpeg, or webp")
.option("--background <value>", "Background hint: transparent, opaque, or auto")
.option("--openai-background <value>", "OpenAI background hint: transparent, opaque, or auto")
.option("--openai-moderation <value>", "OpenAI moderation hint: low or auto")
.option("--quality <value>", "Quality hint: low, medium, high, xhigh, max, or auto")
.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);
}
function resolveImageGenerationOptions(opts: Record<string, unknown>, command: Command) {
return {
agent: resolveCapabilityAgentOption(command, opts.agent),
model: opts.model as string | undefined,
count: parseOptionalPositiveInteger(opts.count, "--count"),
size: opts.size as string | undefined,
aspectRatio: opts.aspectRatio as string | undefined,
resolution: opts.resolution as "1K" | "2K" | "4K" | undefined,
outputFormat: parseImageOption(opts.outputFormat, IMAGE_OUTPUT_FORMATS, "--output-format"),
background: parseImageOption(opts.background, IMAGE_BACKGROUNDS, "--background"),
openaiBackground: parseImageOption(
opts.openaiBackground,
IMAGE_BACKGROUNDS,
"--openai-background",
),
openaiModeration: parseImageOption(
opts.openaiModeration,
IMAGE_MODERATIONS,
"--openai-moderation",
),
quality: parseImageOption(opts.quality, IMAGE_QUALITIES, "--quality"),
timeoutMs: parseOptionalTimeoutMs(opts.timeoutMs as string | number | undefined),
output: opts.output as string | undefined,
};
}
export function registerImageCapabilityCommands(capability: Command): void {
const image = capability
.command("image")
.description("Image generation and description")
.option("--agent <id>", "Agent whose model and auth state should be used");
addImageGenerationOptions(
image
.command("generate")
.description("Generate images")
.requiredOption("--prompt <text>", "Prompt text"),
).action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const result = await runImageGenerate({
capability: "image.generate",
prompt: String(opts.prompt),
...resolveImageGenerationOptions(opts, command),
});
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, formatEnvelopeForText);
});
});
addImageGenerationOptions(
image
.command("edit")
.description("Edit images with one or more input files")
.requiredOption("--file <path>", "Input file", collectOption)
.requiredOption("--prompt <text>", "Prompt text"),
).action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const files = Array.isArray(opts.file) ? (opts.file as string[]) : [String(opts.file)];
const result = await runImageGenerate({
capability: "image.edit",
prompt: String(opts.prompt),
file: files,
...resolveImageGenerationOptions(opts, command),
});
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, formatEnvelopeForText);
});
});
for (const [commandName, description] of [
["describe", "Describe one image file"],
["describe-many", "Describe multiple image files"],
] as const) {
const describe = image.command(commandName).description(description);
const multiple = commandName === "describe-many";
if (multiple) {
describe.requiredOption("--file <path>", "Image file", collectOption);
} else {
describe.requiredOption("--file <path>", "Image file");
}
describe
.option("--prompt <text>", "Prompt hint")
.option("--model <provider/model>", "Model override")
.option("--timeout-ms <ms>", "Provider request timeout in milliseconds")
.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 runImageDescribe({
capability: `image.${commandName}`,
files: multiple ? (opts.file as string[]) : [String(opts.file)],
model: opts.model as string | undefined,
prompt: opts.prompt as string | undefined,
timeoutMs: parseOptionalTimeoutMs(opts.timeoutMs),
agent: resolveCapabilityAgentOption(command, opts.agent),
});
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, formatEnvelopeForText);
});
});
}
registerLocalProvidersCommand(
image,
"List image generation providers",
(cfg, agentId) => {
const selectedProvider = resolveSelectedProviderFromModelRef(
resolveAgentModelPrimaryValue(cfg.agents?.defaults?.mediaModels?.image),
);
return listRuntimeImageGenerationProviders({ config: cfg }).map((provider) => ({
available: true,
configured:
selectedProvider === provider.id ||
providerHasGenericConfig({ cfg, providerId: provider.id, agentId }),
selected: selectedProvider === provider.id,
id: provider.id,
label: provider.label,
defaultModel: provider.defaultModel,
models: provider.models ?? [],
capabilities: provider.capabilities,
}));
},
providerSummaryText,
);
}
|