Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
243 lines
7.5 KiB
TypeScript
243 lines
7.5 KiB
TypeScript
// Minimax provider module implements model/runtime integration.
|
|
import {
|
|
resolveInlineImageJsonResponseMaxBytes,
|
|
type ImageGenerationProvider,
|
|
} from "openclaw/plugin-sdk/image-generation";
|
|
import { canonicalizeBase64, MAX_IMAGE_BYTES } from "openclaw/plugin-sdk/media-runtime";
|
|
import { isProviderApiKeyConfigured } from "openclaw/plugin-sdk/provider-auth";
|
|
import { resolveApiKeyForProvider } from "openclaw/plugin-sdk/provider-auth-runtime";
|
|
import {
|
|
assertOkOrThrowHttpError,
|
|
postJsonRequest,
|
|
readProviderJsonResponse,
|
|
resolveProviderHttpRequestConfig,
|
|
} from "openclaw/plugin-sdk/provider-http";
|
|
|
|
const DEFAULT_MINIMAX_IMAGE_BASE_URL = "https://api.minimax.io";
|
|
const CN_MINIMAX_IMAGE_BASE_URL = "https://api.minimaxi.com";
|
|
const DEFAULT_MODEL = "image-01";
|
|
const DEFAULT_OUTPUT_MIME = "image/png";
|
|
const MINIMAX_MAX_IMAGE_RESULTS = 9;
|
|
const MB = 1024 * 1024;
|
|
const MINIMAX_SUPPORTED_ASPECT_RATIOS = [
|
|
"1:1",
|
|
"16:9",
|
|
"4:3",
|
|
"3:2",
|
|
"2:3",
|
|
"3:4",
|
|
"9:16",
|
|
"21:9",
|
|
] as const;
|
|
|
|
type MinimaxImageApiResponse = {
|
|
data?: {
|
|
image_base64?: string[];
|
|
};
|
|
metadata?: {
|
|
success_count?: number;
|
|
failed_count?: number;
|
|
};
|
|
id?: string;
|
|
base_resp?: {
|
|
status_code?: number;
|
|
status_msg?: string;
|
|
};
|
|
};
|
|
|
|
function isMinimaxCnHost(value: string | undefined): boolean {
|
|
const trimmed = value?.trim();
|
|
if (!trimmed) {
|
|
return false;
|
|
}
|
|
const candidate = /^[a-z][a-z\d+.-]*:\/\//iu.test(trimmed) ? trimmed : `https://${trimmed}`;
|
|
try {
|
|
const hostname = new URL(candidate).hostname.toLowerCase();
|
|
return hostname === "minimaxi.com" || hostname.endsWith(".minimaxi.com");
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
function resolveMinimaxImageBaseUrl(
|
|
cfg: Parameters<typeof resolveApiKeyForProvider>[0]["cfg"],
|
|
providerId: string,
|
|
): string {
|
|
// MiniMax image generation uses dedicated endpoints that are separate from
|
|
// the text/chat API endpoints. First check MINIMAX_API_HOST env var,
|
|
// then fall back to the provider's configured baseUrl to determine region.
|
|
const apiHost = process.env.MINIMAX_API_HOST;
|
|
if (isMinimaxCnHost(apiHost)) {
|
|
return CN_MINIMAX_IMAGE_BASE_URL;
|
|
}
|
|
// CN onboarding stores region in provider config without requiring env var
|
|
const providerBaseUrl = cfg?.models?.providers?.[providerId]?.baseUrl;
|
|
if (isMinimaxCnHost(providerBaseUrl)) {
|
|
return CN_MINIMAX_IMAGE_BASE_URL;
|
|
}
|
|
return DEFAULT_MINIMAX_IMAGE_BASE_URL;
|
|
}
|
|
|
|
function resolveGeneratedImageMaxBytes(req: {
|
|
cfg: { agents?: { defaults?: { mediaMaxMb?: number } } };
|
|
}): number {
|
|
const configured = req.cfg.agents?.defaults?.mediaMaxMb;
|
|
if (typeof configured === "number" && Number.isFinite(configured) && configured > 0) {
|
|
return Math.floor(configured * MB);
|
|
}
|
|
return MAX_IMAGE_BYTES;
|
|
}
|
|
|
|
function buildMinimaxImageProvider(providerId: string): ImageGenerationProvider {
|
|
return {
|
|
id: providerId,
|
|
label: "MiniMax",
|
|
defaultModel: DEFAULT_MODEL,
|
|
models: [DEFAULT_MODEL],
|
|
isConfigured: ({ agentDir }) =>
|
|
isProviderApiKeyConfigured({
|
|
provider: providerId,
|
|
agentDir,
|
|
}),
|
|
capabilities: {
|
|
generate: {
|
|
maxCount: MINIMAX_MAX_IMAGE_RESULTS,
|
|
supportsSize: false,
|
|
supportsAspectRatio: true,
|
|
supportsResolution: false,
|
|
},
|
|
edit: {
|
|
enabled: true,
|
|
maxCount: MINIMAX_MAX_IMAGE_RESULTS,
|
|
maxInputImages: 1,
|
|
supportsSize: false,
|
|
supportsAspectRatio: true,
|
|
supportsResolution: false,
|
|
},
|
|
geometry: {
|
|
aspectRatios: [...MINIMAX_SUPPORTED_ASPECT_RATIOS],
|
|
},
|
|
},
|
|
async generateImage(req) {
|
|
const auth = await resolveApiKeyForProvider({
|
|
provider: providerId,
|
|
cfg: req.cfg,
|
|
agentDir: req.agentDir,
|
|
store: req.authStore,
|
|
});
|
|
if (!auth.apiKey) {
|
|
throw new Error("MiniMax API key missing");
|
|
}
|
|
|
|
const baseUrl = resolveMinimaxImageBaseUrl(req.cfg, providerId);
|
|
const {
|
|
baseUrl: resolvedBaseUrl,
|
|
allowPrivateNetwork,
|
|
headers,
|
|
dispatcherPolicy,
|
|
} = resolveProviderHttpRequestConfig({
|
|
baseUrl,
|
|
defaultBaseUrl: DEFAULT_MINIMAX_IMAGE_BASE_URL,
|
|
allowPrivateNetwork: false,
|
|
defaultHeaders: {
|
|
Authorization: `Bearer ${auth.apiKey}`,
|
|
"Content-Type": "application/json",
|
|
},
|
|
provider: providerId,
|
|
capability: "image",
|
|
transport: "http",
|
|
});
|
|
|
|
const body: Record<string, unknown> = {
|
|
model: req.model || DEFAULT_MODEL,
|
|
prompt: req.prompt,
|
|
response_format: "base64",
|
|
n: req.count ?? 1,
|
|
};
|
|
|
|
if (req.aspectRatio?.trim()) {
|
|
body.aspect_ratio = req.aspectRatio.trim();
|
|
}
|
|
|
|
// Map input images to subject_reference for image-to-image generation
|
|
if (req.inputImages && req.inputImages.length > 0) {
|
|
const ref = req.inputImages[0];
|
|
const mime = ref.mimeType || "image/jpeg";
|
|
const dataUrl = `data:${mime};base64,${ref.buffer.toString("base64")}`;
|
|
body.subject_reference = [{ type: "character", image_file: dataUrl }];
|
|
}
|
|
const { response, release } = await postJsonRequest({
|
|
url: `${resolvedBaseUrl}/v1/image_generation`,
|
|
headers,
|
|
body,
|
|
timeoutMs: req.timeoutMs,
|
|
fetchFn: fetch,
|
|
allowPrivateNetwork,
|
|
ssrfPolicy: req.ssrfPolicy,
|
|
dispatcherPolicy,
|
|
});
|
|
try {
|
|
await assertOkOrThrowHttpError(response, "MiniMax image generation failed");
|
|
|
|
const data = await readProviderJsonResponse<MinimaxImageApiResponse>(
|
|
response,
|
|
"minimax.image-generation",
|
|
{
|
|
maxBytes: resolveInlineImageJsonResponseMaxBytes(
|
|
MINIMAX_MAX_IMAGE_RESULTS,
|
|
resolveGeneratedImageMaxBytes(req),
|
|
),
|
|
},
|
|
);
|
|
|
|
const baseResp = data.base_resp;
|
|
if (baseResp && typeof baseResp.status_code === "number" && baseResp.status_code !== 0) {
|
|
const msg = baseResp.status_msg ?? "";
|
|
throw new Error(`MiniMax image generation API error (${baseResp.status_code}): ${msg}`);
|
|
}
|
|
|
|
const base64Images = data.data?.image_base64 ?? [];
|
|
const failedCount = data.metadata?.failed_count ?? 0;
|
|
|
|
if (base64Images.length === 0) {
|
|
const reason =
|
|
failedCount > 0 ? `${failedCount} image(s) failed to generate` : "no images returned";
|
|
throw new Error(`MiniMax image generation returned no images: ${reason}`);
|
|
}
|
|
|
|
const images = base64Images
|
|
.map((b64, index) => {
|
|
if (!b64) {
|
|
return null;
|
|
}
|
|
const canonicalBase64 = canonicalizeBase64(b64);
|
|
if (!canonicalBase64) {
|
|
throw new Error("MiniMax image generation returned malformed image base64");
|
|
}
|
|
return {
|
|
buffer: Buffer.from(canonicalBase64, "base64"),
|
|
mimeType: DEFAULT_OUTPUT_MIME,
|
|
fileName: `image-${index + 1}.png`,
|
|
};
|
|
})
|
|
.filter((entry): entry is NonNullable<typeof entry> => entry !== null);
|
|
|
|
return {
|
|
images,
|
|
model: req.model || DEFAULT_MODEL,
|
|
};
|
|
} finally {
|
|
await release();
|
|
}
|
|
},
|
|
};
|
|
}
|
|
|
|
export function buildMinimaxImageGenerationProvider(): ImageGenerationProvider {
|
|
return buildMinimaxImageProvider("minimax");
|
|
}
|
|
|
|
export function buildMinimaxPortalImageGenerationProvider(): ImageGenerationProvider {
|
|
return buildMinimaxImageProvider("minimax-portal");
|
|
}
|