File size: 22,638 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 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 | import { randomUUID } from "node:crypto";
import fs from "node:fs/promises";
import path from "node:path";
import { detectMime, normalizeMimeType } from "@openclaw/media-core/mime";
import {
normalizeOptionalString,
normalizeStringifiedOptionalString,
} from "@openclaw/normalization-core/string-coerce";
import type { Command } from "commander";
import {
GATEWAY_CLIENT_MODES,
GATEWAY_CLIENT_NAMES,
} from "../../../packages/gateway-protocol/src/client-info.js";
import { resolveAgentDir, resolveAgentEffectiveModelPrimary } from "../../agents/agent-scope.js";
import {
listProfilesForProvider,
loadAuthProfileStoreForRuntime,
} from "../../agents/auth-profiles.js";
import { updateAuthProfileStoreWithLock } from "../../agents/auth-profiles/store-runtime.js";
import { buildExplicitSessionIdSessionKey } from "../../agents/command/session.js";
import { DEFAULT_PROVIDER } from "../../agents/defaults.js";
import { canonicalizeCaseOnlyCatalogModelRef } from "../../agents/model-selection.js";
import { readPreparedModelCatalog } from "../../agents/prepared-model-catalog.js";
import {
acquireSimpleCompletionModelForAgent,
completeWithPreparedSimpleCompletionModel,
} from "../../agents/simple-completion-runtime.js";
import { normalizeThinkLevel, type ThinkLevel } from "../../auto-reply/thinking.js";
import { getRuntimeConfig } from "../../config/config.js";
import type { OpenClawConfig } from "../../config/types.openclaw.js";
import { callGateway, randomIdempotencyKey } from "../../gateway/call.js";
import { ADMIN_SCOPE } from "../../gateway/operator-scopes.js";
import { convertHeicToJpeg } from "../../media/media-services.js";
import { defaultRuntime } from "../../runtime.js";
import { getProviderEnvVars } from "../../secrets/provider-env-vars.js";
import { AsyncWorkScope, captureAsyncWorkTracker } from "../../shared/async-work-scope.js";
import { createDeferredCore } from "../../shared/deferred.js";
import { runCommandWithRuntime } from "../cli-utils.js";
import { getModelsCommandSecretTargetIds } from "../command-secret-targets.js";
import { collectOption } from "../program/helpers.js";
import { prepareLocalCapabilityAccountSecrets } from "./local-account-secrets.js";
import type { CapabilityEnvelope, CapabilityTransport } from "./metadata.js";
import { emitJsonOrText, formatEnvelopeForText, providerSummaryText } from "./output.js";
import {
providerHasGenericConfig,
requireProviderModelOverride,
resolveCapabilityAgentOption,
resolveCapabilityProviderAgentId,
resolveLocalCapabilityRuntimeConfig,
resolveSelectedProviderFromModelRef,
resolveTransport,
} from "./shared.js";
const LOCAL_MODEL_RUN_SYSTEM_PROMPT = "You are a personal assistant running inside OpenClaw.";
const HEIC_MODEL_RUN_MIMES = new Set([
"image/heic",
"image/heic-sequence",
"image/heif",
"image/heif-sequence",
]);
async function loadModelCatalogForInspection(cfg: OpenClawConfig, rawAgentId?: string) {
const agentId =
rawAgentId === undefined ? undefined : resolveCapabilityProviderAgentId(cfg, rawAgentId);
const prepared = await readPreparedModelCatalog({ config: cfg, agentId, readOnly: true });
return prepared.toSorted(
(a, b) => a.provider.localeCompare(b.provider) || a.id.localeCompare(b.id),
);
}
async function canonicalizeModelRunRef(params: {
raw: string | undefined;
cfg: OpenClawConfig;
agentId: string;
preserveAuthProfile: boolean;
}): Promise<string | undefined> {
return await canonicalizeCaseOnlyCatalogModelRef({
cfg: params.cfg,
raw: params.raw,
defaultProvider: DEFAULT_PROVIDER,
loadCatalog: () =>
readPreparedModelCatalog({ config: params.cfg, agentId: params.agentId, readOnly: true }),
preserveAuthProfile: params.preserveAuthProfile,
});
}
function collectModelRunText(content: Array<{ type: string; text?: string }>): string {
return content
.map((block) => (block.type === "text" && typeof block.text === "string" ? block.text : ""))
.join("")
.trim();
}
function requireModelRunPrompt(value: unknown): string {
if (typeof value !== "string" || normalizeOptionalString(value) === undefined) {
throw new Error("--prompt cannot be empty or whitespace-only.");
}
return value;
}
type ModelRunImageFile = {
path: string;
fileName: string;
mimeType: string;
data: string;
};
async function readModelRunImageFiles(files: string[] | undefined): Promise<ModelRunImageFile[]> {
if (!files || files.length === 0) {
return [];
}
return await Promise.all(
files.map(async (filePath) => {
const resolvedPath = path.resolve(filePath);
const buffer = await fs.readFile(resolvedPath);
const mimeType = normalizeMimeType(
await detectMime({
buffer,
filePath: resolvedPath,
}),
);
if (!mimeType?.startsWith("image/")) {
throw new Error(
`Unsupported --file for model run: ${resolvedPath}. Only image files are supported; use infer audio transcribe for audio files.`,
);
}
if (HEIC_MODEL_RUN_MIMES.has(mimeType)) {
const converted = await convertHeicToJpeg(buffer);
return {
path: resolvedPath,
fileName: path.basename(resolvedPath),
mimeType: "image/jpeg",
data: converted.toString("base64"),
};
}
return {
path: resolvedPath,
fileName: path.basename(resolvedPath),
mimeType,
data: buffer.toString("base64"),
};
}),
);
}
function normalizeModelRunThinking(value: unknown): ThinkLevel | undefined {
if (value === undefined) {
return undefined;
}
if (typeof value !== "string") {
throw new Error("--thinking must be a string.");
}
const normalized = normalizeThinkLevel(value);
if (!normalized) {
throw new Error(
"Invalid thinking level. Use one of: off, minimal, low, medium, high, adaptive, xhigh, max.",
);
}
return normalized;
}
async function runModelRun(params: {
prompt: string;
files?: string[];
model?: string;
thinking?: ThinkLevel;
transport: CapabilityTransport;
agent?: string;
}) {
const explicitModelOverride = requireProviderModelOverride(params.model);
const cfg =
params.transport === "local"
? await resolveLocalCapabilityRuntimeConfig({
commandName: "infer model run",
targetIds: getModelsCommandSecretTargetIds(),
})
: getRuntimeConfig();
const agentId = resolveCapabilityProviderAgentId(cfg, params.agent, "infer model run");
const modelRef = await canonicalizeModelRunRef({
raw: params.model,
cfg,
agentId,
preserveAuthProfile: params.transport === "local",
});
const hasExplicitProviderModelOverride = Boolean(explicitModelOverride);
const imageFiles = await readModelRunImageFiles(params.files);
const messageContent =
imageFiles.length > 0
? [
{ type: "text" as const, text: params.prompt },
...imageFiles.map((image) => ({
type: "image" as const,
data: image.data,
mimeType: image.mimeType,
})),
]
: params.prompt;
if (params.transport === "local") {
const callerResult = createDeferredCore<CapabilityEnvelope>();
const trackOwner = captureAsyncWorkTracker();
// Command completion can precede response callbacks and cancellation drainage.
void trackOwner(async () => {
await prepareLocalCapabilityAccountSecrets({ cfg, agentId });
const prepared = await acquireSimpleCompletionModelForAgent({
cfg,
agentId,
modelRef,
allowMissingApiKeyModes: ["aws-sdk"],
...(hasExplicitProviderModelOverride ? { allowBundledStaticCatalogFallback: true } : {}),
skipAgentDiscovery: true,
});
if ("error" in prepared) {
throw new Error(prepared.error);
}
const work = new AsyncWorkScope();
try {
callerResult.resolve(
await work.track(async () => {
if (prepared.selection.provider === "codex") {
throw new Error(
'The codex provider is served by the Codex app-server agent runtime, not the local simple-completion transport. Use an openai/<model> ref with provider/model agentRuntime.id: "codex", run through the gateway, or use /codex commands.',
);
}
const localModelRunSystemPrompt =
prepared.model.api === "openai-chatgpt-responses"
? LOCAL_MODEL_RUN_SYSTEM_PROMPT
: undefined;
const result = await completeWithPreparedSimpleCompletionModel({
model: prepared.model,
auth: prepared.auth,
cfg,
context: {
...(localModelRunSystemPrompt ? { systemPrompt: localModelRunSystemPrompt } : {}),
messages: [
{
role: "user",
content: messageContent,
timestamp: Date.now(),
},
],
},
options: {
maxTokens:
typeof prepared.model.maxTokens === "number" &&
Number.isFinite(prepared.model.maxTokens)
? prepared.model.maxTokens
: undefined,
...(params.thinking ? { reasoning: params.thinking } : {}),
},
});
const text = collectModelRunText(result.content);
if (!text) {
const providerErrorMessage = (result as { errorMessage?: unknown }).errorMessage;
const detail =
typeof providerErrorMessage === "string" && providerErrorMessage.trim()
? `: ${providerErrorMessage.trim()}`
: "";
throw new Error(
`No text output returned for provider "${prepared.selection.provider}" model "${prepared.selection.modelId}"${detail}.`,
);
}
return {
ok: true,
capability: "model.run",
transport: "local" as const,
provider: prepared.selection.provider,
model: prepared.selection.modelId,
attempts: [],
...(imageFiles.length > 0
? {
inputs: imageFiles.map((image) => ({
path: image.path,
mimeType: image.mimeType,
})),
}
: {}),
outputs: [
{
text,
mediaUrl: null,
},
],
} satisfies CapabilityEnvelope;
}),
);
} catch (error) {
callerResult.reject(error);
} finally {
await work.drain();
await prepared[Symbol.asyncDispose]();
}
}).catch((error: unknown) => callerResult.reject(error));
return await callerResult.promise;
}
const { provider, model } = requireProviderModelOverride(modelRef) ?? {};
// Provider/model overrides require trusted-operator scope. Use the backend
// shared-secret lane so local gateway smokes do not depend on paired CLI device scopes.
const hasModelOverride = Boolean(provider || model);
const sessionId = `model-run-${randomUUID()}`;
const sessionKey = buildExplicitSessionIdSessionKey({ agentId, sessionId });
const response: {
result?: {
payloads?: Array<{ text?: string; mediaUrl?: string | null; mediaUrls?: string[] }>;
meta?: {
agentMeta?: {
provider?: string;
model?: string;
fallbackAttempts?: Array<Record<string, unknown>>;
};
};
};
} = await callGateway({
method: "agent",
params: {
agentId,
sessionId,
sessionKey,
message: params.prompt,
attachments:
imageFiles.length > 0
? imageFiles.map((image) => ({
type: "image",
fileName: image.fileName,
mimeType: image.mimeType,
content: image.data,
}))
: undefined,
provider,
model,
...(params.thinking ? { thinking: params.thinking } : {}),
modelRun: true,
promptMode: "none",
cleanupBundleMcpOnRunEnd: true,
idempotencyKey: randomIdempotencyKey(),
},
expectFinal: true,
timeoutMs: 120_000,
clientName: hasModelOverride ? GATEWAY_CLIENT_NAMES.GATEWAY_CLIENT : GATEWAY_CLIENT_NAMES.CLI,
mode: hasModelOverride ? GATEWAY_CLIENT_MODES.BACKEND : GATEWAY_CLIENT_MODES.CLI,
...(hasModelOverride ? { scopes: [ADMIN_SCOPE] } : {}),
});
return {
ok: true,
capability: "model.run",
transport: "gateway" as const,
provider: response?.result?.meta?.agentMeta?.provider,
model: response?.result?.meta?.agentMeta?.model,
attempts: response?.result?.meta?.agentMeta?.fallbackAttempts ?? [],
outputs: (response?.result?.payloads ?? []).map((payload) => ({
text: payload.text,
mediaUrl: payload.mediaUrl,
mediaUrls: payload.mediaUrls,
})),
...(imageFiles.length > 0
? {
inputs: imageFiles.map((image) => ({
path: image.path,
mimeType: image.mimeType,
})),
}
: {}),
} satisfies CapabilityEnvelope;
}
async function buildModelProviders(rawAgentId?: string) {
const cfg = getRuntimeConfig();
const agentId = resolveCapabilityProviderAgentId(cfg, rawAgentId);
const catalog = await loadModelCatalogForInspection(cfg, agentId);
const selectedProvider = resolveSelectedProviderFromModelRef(
resolveAgentEffectiveModelPrimary(cfg, agentId),
);
const grouped = new Map<
string,
{
provider: string;
count: number;
defaults: string[];
available: boolean;
configured: boolean;
selected: boolean;
}
>();
for (const entry of catalog) {
const current = grouped.get(entry.provider) ?? {
provider: entry.provider,
count: 0,
defaults: [],
available: true,
configured: providerHasGenericConfig({
cfg,
providerId: entry.provider,
agentId,
envVars: getProviderEnvVars(entry.provider),
}),
selected: selectedProvider === entry.provider,
};
current.count += 1;
if (current.defaults.length < 3) {
current.defaults.push(entry.id);
}
grouped.set(entry.provider, current);
}
return [...grouped.values()].toSorted((a, b) => a.provider.localeCompare(b.provider));
}
async function runModelAuthStatus(agent: string) {
const captured: string[] = [];
const { modelsStatusCommand } = await import("../../commands/models/list.status-command.js");
await modelsStatusCommand(
{ json: true, agent },
{
log: (...args) => captured.push(args.join(" ")),
error: (message) => {
throw message instanceof Error ? message : new Error(String(message));
},
exit: (code) => {
throw new Error(`exit ${code}`);
},
},
);
const raw = captured.find((line) => line.trim().startsWith("{"));
return raw ? (JSON.parse(raw) as Record<string, unknown>) : {};
}
async function runModelAuthLogout(provider: string, agent: string) {
const cfg = getRuntimeConfig();
const agentDir = resolveAgentDir(cfg, agent);
const store = loadAuthProfileStoreForRuntime(agentDir);
const profileIds = listProfilesForProvider(store, provider);
const updated = await updateAuthProfileStoreWithLock({
agentDir,
updater: (nextStore) => {
let changed = false;
for (const profileId of profileIds) {
if (nextStore.profiles[profileId]) {
delete nextStore.profiles[profileId];
changed = true;
}
if (nextStore.usageStats?.[profileId]) {
delete nextStore.usageStats[profileId];
changed = true;
}
}
if (nextStore.order?.[provider]) {
delete nextStore.order[provider];
changed = true;
}
if (nextStore.lastGood?.[provider]) {
delete nextStore.lastGood[provider];
changed = true;
}
return changed;
},
});
if (!updated) {
throw new Error(`Failed to remove saved auth profiles for provider ${provider}.`);
}
return {
provider,
removedProfiles: profileIds,
};
}
export function registerModelCapabilityCommands(capability: Command): void {
const model = capability
.command("model")
.description("Text inference and model catalog commands")
.option("--agent <id>", "Agent whose model and auth state should be used");
model
.command("run")
.description("Run a one-shot model turn")
.requiredOption("--prompt <text>", "Prompt text")
.option("--file <path>", "Image file", collectOption, [])
.option("--model <provider/model>", "Model override")
.option("--thinking <level>", "Thinking level override")
.option("--local", "Force local execution", false)
.option("--gateway", "Force gateway execution", false)
.option(
"--agent <id>",
"Agent whose model and credentials own the run (default: agents.defaults.systemAgent.agentId, then the sole agent)",
)
.option("--json", "Output JSON", false)
.action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const prompt = requireModelRunPrompt(opts.prompt);
const thinking = normalizeModelRunThinking(opts.thinking);
const transport = resolveTransport({
local: Boolean(opts.local),
gateway: Boolean(opts.gateway),
supported: ["local", "gateway"],
defaultTransport: "local",
});
const result = await runModelRun({
prompt,
agent: resolveCapabilityAgentOption(command, opts.agent),
files: opts.file as string[] | undefined,
model: opts.model as string | undefined,
thinking,
transport,
});
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, formatEnvelopeForText);
});
});
model
.command("list")
.description("List known models")
.option("--json", "Output JSON", false)
.action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const result = await loadModelCatalogForInspection(
getRuntimeConfig(),
resolveCapabilityAgentOption(command, opts.agent),
);
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, providerSummaryText);
});
});
model
.command("inspect")
.description("Inspect one model catalog entry")
.requiredOption("--model <provider/model>", "Model id")
.option("--json", "Output JSON", false)
.action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const target = normalizeStringifiedOptionalString(opts.model) ?? "";
const catalog = await loadModelCatalogForInspection(
getRuntimeConfig(),
resolveCapabilityAgentOption(command, opts.agent),
);
const entry =
catalog.find((candidate) => `${candidate.provider}/${candidate.id}` === target) ??
catalog.find((candidate) => candidate.id === target);
if (!entry) {
throw new Error(`Model not found: ${target}`);
}
emitJsonOrText(defaultRuntime, Boolean(opts.json), entry, (value) =>
JSON.stringify(value, null, 2),
);
});
});
model
.command("providers")
.description("List model providers from the catalog")
.option("--agent <id>", "Agent whose provider state should be inspected")
.option("--json", "Output JSON", false)
.action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const result = await buildModelProviders(resolveCapabilityAgentOption(command, opts.agent));
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, providerSummaryText);
});
});
const modelAuth = model
.command("auth")
.description("Provider auth helpers")
.option("--agent <id>", "Agent id (default: configured default agent)");
const resolveModelAuthAgent = (command: Command, rawAgentId: unknown, surface: string) =>
resolveCapabilityProviderAgentId(
getRuntimeConfig(),
resolveCapabilityAgentOption(command, rawAgentId),
surface,
);
modelAuth
.command("login")
.description("Run provider auth login")
.requiredOption("--provider <id>", "Provider id")
.option("--method <id>", "Provider auth method id")
.option("--agent <id>", "Agent id (default: configured default agent)")
.action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const agent = resolveModelAuthAgent(command, opts.agent, "infer model auth login");
const { modelsAuthLoginCommand } = await import("../../commands/models/auth.js");
await modelsAuthLoginCommand(
{
provider: String(opts.provider),
method: opts.method ? String(opts.method) : undefined,
agent,
},
defaultRuntime,
);
});
});
modelAuth
.command("logout")
.description("Remove saved auth profiles for one provider")
.requiredOption("--provider <id>", "Provider id")
.option(
"--agent <id>",
"Agent id (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 runModelAuthLogout(
String(opts.provider),
resolveModelAuthAgent(command, opts.agent, "infer model auth logout"),
);
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, (value) =>
JSON.stringify(value, null, 2),
);
});
});
modelAuth
.command("status")
.description("Show configured auth state")
.option("--agent <id>", "Agent id (default: configured default agent)")
.option("--json", "Output JSON", false)
.action(async (opts, command) => {
await runCommandWithRuntime(defaultRuntime, async () => {
const result = await runModelAuthStatus(
resolveModelAuthAgent(command, opts.agent, "infer model auth status"),
);
emitJsonOrText(defaultRuntime, Boolean(opts.json), result, (value) =>
JSON.stringify(value, null, 2),
);
});
});
}
|