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
511 lines
17 KiB
TypeScript
511 lines
17 KiB
TypeScript
// Xai provider module implements model/runtime integration.
|
|
import { toImageDataUrl } from "openclaw/plugin-sdk/image-generation";
|
|
import { extensionForMime } from "openclaw/plugin-sdk/media-mime";
|
|
import { isProviderApiKeyConfigured } from "openclaw/plugin-sdk/provider-auth";
|
|
import { resolveApiKeyForProvider } from "openclaw/plugin-sdk/provider-auth-runtime";
|
|
import {
|
|
assertOkOrThrowHttpError,
|
|
createProviderOperationDeadline,
|
|
createProviderOperationTimeoutResolver,
|
|
fetchProviderDownloadResponse,
|
|
fetchProviderOperationResponse,
|
|
postJsonRequest,
|
|
readProviderJsonResponse,
|
|
resolveProviderOperationTimeoutMs,
|
|
resolveProviderHttpRequestConfig,
|
|
waitProviderOperationPollInterval,
|
|
type ProviderOperationTimeoutMs,
|
|
} from "openclaw/plugin-sdk/provider-http";
|
|
import { readResponseWithLimit } from "openclaw/plugin-sdk/response-limit-runtime";
|
|
import { isRecord, normalizeOptionalString } from "openclaw/plugin-sdk/string-coerce-runtime";
|
|
import type {
|
|
GeneratedVideoAsset,
|
|
VideoGenerationProvider,
|
|
VideoGenerationRequest,
|
|
} from "openclaw/plugin-sdk/video-generation";
|
|
|
|
const DEFAULT_XAI_VIDEO_BASE_URL = "https://api.x.ai/v1";
|
|
const DEFAULT_XAI_VIDEO_MODEL = "grok-imagine-video";
|
|
const DEFAULT_TIMEOUT_MS = 600_000;
|
|
const POLL_INTERVAL_MS = 5_000;
|
|
const MAX_POLL_ATTEMPTS = 120;
|
|
const XAI_VIDEO_ASPECT_RATIOS = new Set(["1:1", "16:9", "9:16", "4:3", "3:4", "3:2", "2:3"]);
|
|
const XAI_VIDEO_MALFORMED_RESPONSE = "xAI video generation response malformed";
|
|
// xAI documents these as the only meaningful values; everything else (queued,
|
|
// processing, submitted, pending, in_progress, ...) means "keep polling".
|
|
const XAI_VIDEO_TERMINAL_FAILURE_STATUSES = new Set(["failed", "error", "expired", "cancelled"]);
|
|
const XAI_VIDEO_DEFAULT_DURATION_SECONDS = 8;
|
|
const XAI_VIDEO_DEFAULT_ASPECT_RATIO = "16:9";
|
|
const XAI_VIDEO_DEFAULT_RESOLUTION = "720p";
|
|
const DEFAULT_GENERATED_VIDEO_MAX_BYTES = 16 * 1024 * 1024;
|
|
|
|
type XaiVideoCreateResponse = {
|
|
request_id?: string;
|
|
error?: {
|
|
code?: string;
|
|
message?: string;
|
|
} | null;
|
|
};
|
|
|
|
type XaiVideoStatusResponse = {
|
|
request_id?: string;
|
|
// Free-form: xAI returns whatever string it wants here. The caller decides
|
|
// which strings are terminal vs continue-polling.
|
|
status: string;
|
|
video?: {
|
|
url?: string;
|
|
} | null;
|
|
error?: {
|
|
code?: string;
|
|
message?: string;
|
|
} | null;
|
|
};
|
|
|
|
type VideoGenerationSourceInput = {
|
|
url?: string;
|
|
buffer?: Buffer;
|
|
mimeType?: string;
|
|
role?: string;
|
|
};
|
|
|
|
async function readXaiVideoJson(response: Response): Promise<Record<string, unknown>> {
|
|
let payload: unknown;
|
|
try {
|
|
payload = await readProviderJsonResponse<unknown>(response, "xAI video generation response");
|
|
} catch (error) {
|
|
if (error instanceof Error && error.message.endsWith(": malformed JSON response")) {
|
|
throw new Error(XAI_VIDEO_MALFORMED_RESPONSE, { cause: error });
|
|
}
|
|
throw error;
|
|
}
|
|
if (!isRecord(payload)) {
|
|
throw new Error(XAI_VIDEO_MALFORMED_RESPONSE);
|
|
}
|
|
return payload;
|
|
}
|
|
|
|
function xaiErrorMessage(payload: Record<string, unknown>): string | undefined {
|
|
const error = payload.error;
|
|
if (error === undefined || error === null) {
|
|
return undefined;
|
|
}
|
|
if (!isRecord(error)) {
|
|
throw new Error(XAI_VIDEO_MALFORMED_RESPONSE);
|
|
}
|
|
return normalizeOptionalString(error.message);
|
|
}
|
|
|
|
function readXaiCreateResponse(payload: Record<string, unknown>): XaiVideoCreateResponse {
|
|
return {
|
|
request_id: normalizeOptionalString(payload.request_id),
|
|
error: xaiErrorMessage(payload) ? { message: xaiErrorMessage(payload) } : null,
|
|
};
|
|
}
|
|
|
|
function readXaiStatusResponse(payload: Record<string, unknown>): XaiVideoStatusResponse {
|
|
const video = payload.video;
|
|
if (video !== undefined && video !== null && !isRecord(video)) {
|
|
throw new Error(XAI_VIDEO_MALFORMED_RESPONSE);
|
|
}
|
|
return {
|
|
request_id: normalizeOptionalString(payload.request_id),
|
|
status: normalizeOptionalString(payload.status) ?? "",
|
|
video: isRecord(video) ? { url: normalizeOptionalString(video.url) } : null,
|
|
error: xaiErrorMessage(payload) ? { message: xaiErrorMessage(payload) } : null,
|
|
};
|
|
}
|
|
|
|
function resolveXaiVideoBaseUrl(req: VideoGenerationRequest): string {
|
|
return (
|
|
normalizeOptionalString(req.cfg?.models?.providers?.xai?.baseUrl) ?? DEFAULT_XAI_VIDEO_BASE_URL
|
|
);
|
|
}
|
|
|
|
function resolveGeneratedVideoMaxBytes(req: VideoGenerationRequest): number {
|
|
const configured = req.cfg.agents?.defaults?.mediaMaxMb;
|
|
if (typeof configured === "number" && Number.isFinite(configured) && configured > 0) {
|
|
return Math.floor(configured * 1024 * 1024);
|
|
}
|
|
return DEFAULT_GENERATED_VIDEO_MAX_BYTES;
|
|
}
|
|
|
|
function resolveImageUrl(input: VideoGenerationSourceInput | undefined): string | undefined {
|
|
if (!input) {
|
|
return undefined;
|
|
}
|
|
const inputUrl = normalizeOptionalString(input.url);
|
|
if (inputUrl) {
|
|
return inputUrl;
|
|
}
|
|
if (!input.buffer) {
|
|
throw new Error("xAI image-to-video input is missing image data.");
|
|
}
|
|
return toImageDataUrl({ ...input, buffer: input.buffer, defaultMimeType: "image/png" });
|
|
}
|
|
|
|
function resolveRequiredImageUrl(input: VideoGenerationSourceInput): string {
|
|
const imageUrl = resolveImageUrl(input);
|
|
if (!imageUrl) {
|
|
throw new Error("xAI image-to-video input is missing image data.");
|
|
}
|
|
return imageUrl;
|
|
}
|
|
|
|
function isReferenceImage(input: VideoGenerationSourceInput): boolean {
|
|
return normalizeOptionalString(input.role)?.toLowerCase() === "reference_image";
|
|
}
|
|
|
|
function resolveInputVideoUrl(input: VideoGenerationSourceInput | undefined): string | undefined {
|
|
if (!input) {
|
|
return undefined;
|
|
}
|
|
const url = normalizeOptionalString(input.url);
|
|
if (url) {
|
|
return url;
|
|
}
|
|
if (input.buffer) {
|
|
throw new Error("xAI video editing currently requires a remote mp4 URL input.");
|
|
}
|
|
throw new Error("xAI video editing input is missing video data.");
|
|
}
|
|
|
|
function resolveDurationSeconds(params: {
|
|
durationSeconds?: number;
|
|
min?: number;
|
|
max?: number;
|
|
}): number | undefined {
|
|
if (typeof params.durationSeconds !== "number" || !Number.isFinite(params.durationSeconds)) {
|
|
return undefined;
|
|
}
|
|
const rounded = Math.round(params.durationSeconds);
|
|
return Math.max(params.min ?? 1, Math.min(params.max ?? 15, rounded));
|
|
}
|
|
|
|
function resolveAspectRatio(value: string | undefined): string | undefined {
|
|
const trimmed = normalizeOptionalString(value);
|
|
if (!trimmed || !XAI_VIDEO_ASPECT_RATIOS.has(trimmed)) {
|
|
return undefined;
|
|
}
|
|
return trimmed;
|
|
}
|
|
|
|
function resolveResolution(value: string | undefined): "480p" | "720p" | undefined {
|
|
if (typeof value !== "string") {
|
|
return undefined;
|
|
}
|
|
const normalized = value.trim().toLowerCase();
|
|
if (normalized === "480p") {
|
|
return "480p";
|
|
}
|
|
if (normalized === "720p" || normalized === "1080p") {
|
|
return "720p";
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
function resolveXaiVideoMode(
|
|
req: VideoGenerationRequest,
|
|
): "generate" | "referenceToVideo" | "edit" | "extend" {
|
|
const hasVideoInput = (req.inputVideos?.length ?? 0) > 0;
|
|
if (!hasVideoInput && (req.inputImages ?? []).some(isReferenceImage)) {
|
|
return "referenceToVideo";
|
|
}
|
|
if (!hasVideoInput) {
|
|
return "generate";
|
|
}
|
|
return typeof resolveDurationSeconds({
|
|
durationSeconds: req.durationSeconds,
|
|
min: 2,
|
|
max: 10,
|
|
}) === "number"
|
|
? "extend"
|
|
: "edit";
|
|
}
|
|
|
|
function buildCreateBody(req: VideoGenerationRequest): Record<string, unknown> {
|
|
const inputImages = req.inputImages ?? [];
|
|
const hasReferenceImages = inputImages.some(isReferenceImage);
|
|
if (hasReferenceImages && !inputImages.every(isReferenceImage)) {
|
|
throw new Error(
|
|
"xAI reference-image video generation requires every image role to be reference_image.",
|
|
);
|
|
}
|
|
if (!hasReferenceImages && inputImages.length > 1) {
|
|
throw new Error("xAI image-to-video generation supports at most one first-frame image.");
|
|
}
|
|
if (hasReferenceImages && inputImages.length > 7) {
|
|
throw new Error("xAI reference-image video generation supports at most 7 reference images.");
|
|
}
|
|
if ((req.inputVideos?.length ?? 0) > 1) {
|
|
throw new Error("xAI video generation supports at most one input video.");
|
|
}
|
|
if ((req.inputImages?.length ?? 0) > 0 && (req.inputVideos?.length ?? 0) > 0) {
|
|
throw new Error("xAI video generation does not support image and video inputs together.");
|
|
}
|
|
|
|
const mode = resolveXaiVideoMode(req);
|
|
const body: Record<string, unknown> = {
|
|
model: normalizeOptionalString(req.model) ?? DEFAULT_XAI_VIDEO_MODEL,
|
|
prompt: req.prompt,
|
|
};
|
|
|
|
if (mode === "generate") {
|
|
const imageUrl = resolveImageUrl(req.inputImages?.[0]);
|
|
if (imageUrl) {
|
|
body.image = { url: imageUrl };
|
|
}
|
|
body.duration =
|
|
resolveDurationSeconds({
|
|
durationSeconds: req.durationSeconds,
|
|
min: 1,
|
|
max: 15,
|
|
}) ?? XAI_VIDEO_DEFAULT_DURATION_SECONDS;
|
|
body.aspect_ratio = resolveAspectRatio(req.aspectRatio) ?? XAI_VIDEO_DEFAULT_ASPECT_RATIO;
|
|
body.resolution = resolveResolution(req.resolution) ?? XAI_VIDEO_DEFAULT_RESOLUTION;
|
|
return body;
|
|
}
|
|
|
|
if (mode === "referenceToVideo") {
|
|
body.reference_images = inputImages.map((image) => ({ url: resolveRequiredImageUrl(image) }));
|
|
body.duration =
|
|
resolveDurationSeconds({
|
|
durationSeconds: req.durationSeconds,
|
|
min: 1,
|
|
max: 10,
|
|
}) ?? XAI_VIDEO_DEFAULT_DURATION_SECONDS;
|
|
body.aspect_ratio = resolveAspectRatio(req.aspectRatio) ?? XAI_VIDEO_DEFAULT_ASPECT_RATIO;
|
|
body.resolution = resolveResolution(req.resolution) ?? XAI_VIDEO_DEFAULT_RESOLUTION;
|
|
return body;
|
|
}
|
|
|
|
body.video = { url: resolveInputVideoUrl(req.inputVideos?.[0]) };
|
|
if (mode === "extend") {
|
|
const duration = resolveDurationSeconds({
|
|
durationSeconds: req.durationSeconds,
|
|
min: 2,
|
|
max: 10,
|
|
});
|
|
if (typeof duration === "number") {
|
|
body.duration = duration;
|
|
}
|
|
}
|
|
return body;
|
|
}
|
|
|
|
function resolveCreateEndpoint(req: VideoGenerationRequest): string {
|
|
switch (resolveXaiVideoMode(req)) {
|
|
case "edit":
|
|
return "/videos/edits";
|
|
case "extend":
|
|
return "/videos/extensions";
|
|
default:
|
|
return "/videos/generations";
|
|
}
|
|
}
|
|
|
|
async function pollXaiVideo(params: {
|
|
requestId: string;
|
|
headers: Headers;
|
|
timeoutMs?: number;
|
|
baseUrl: string;
|
|
fetchFn: typeof fetch;
|
|
}): Promise<XaiVideoStatusResponse> {
|
|
const deadline = createProviderOperationDeadline({
|
|
timeoutMs: params.timeoutMs,
|
|
label: `xAI video generation request ${params.requestId}`,
|
|
});
|
|
for (let attempt = 0; attempt < MAX_POLL_ATTEMPTS; attempt += 1) {
|
|
const response = await fetchProviderOperationResponse({
|
|
stage: "poll",
|
|
url: `${params.baseUrl}/videos/${params.requestId}`,
|
|
init: {
|
|
method: "GET",
|
|
headers: params.headers,
|
|
},
|
|
timeoutMs: createProviderOperationTimeoutResolver({
|
|
deadline,
|
|
defaultTimeoutMs: DEFAULT_TIMEOUT_MS,
|
|
}),
|
|
fetchFn: params.fetchFn,
|
|
provider: "xai",
|
|
requestFailedMessage: "xAI video status request failed",
|
|
});
|
|
const payload = readXaiStatusResponse(await readXaiVideoJson(response));
|
|
const normalizedStatus = payload.status.toLowerCase();
|
|
if (normalizedStatus === "done") {
|
|
return payload;
|
|
}
|
|
if (XAI_VIDEO_TERMINAL_FAILURE_STATUSES.has(normalizedStatus)) {
|
|
throw new Error(
|
|
normalizeOptionalString(payload.error?.message) ??
|
|
`xAI video generation ${normalizedStatus}`,
|
|
);
|
|
}
|
|
// Any other status (queued, processing, submitted, pending, in_progress,
|
|
// empty, …) is non-terminal: keep polling.
|
|
await waitProviderOperationPollInterval({ deadline, pollIntervalMs: POLL_INTERVAL_MS });
|
|
}
|
|
throw new Error(`xAI video generation task ${params.requestId} did not finish in time`);
|
|
}
|
|
|
|
async function downloadXaiVideo(params: {
|
|
url: string;
|
|
timeoutMs?: ProviderOperationTimeoutMs;
|
|
fetchFn: typeof fetch;
|
|
maxBytes: number;
|
|
}): Promise<GeneratedVideoAsset> {
|
|
const response = await fetchProviderDownloadResponse({
|
|
url: params.url,
|
|
init: { method: "GET" },
|
|
timeoutMs: params.timeoutMs ?? DEFAULT_TIMEOUT_MS,
|
|
fetchFn: params.fetchFn,
|
|
provider: "xai",
|
|
requestFailedMessage: "xAI generated video download failed",
|
|
});
|
|
const mimeType = normalizeOptionalString(response.headers.get("content-type")) ?? "video/mp4";
|
|
const buffer = await readResponseWithLimit(response, params.maxBytes, {
|
|
onOverflow: ({ maxBytes }) =>
|
|
new Error(`xAI generated video download exceeds ${maxBytes} bytes`),
|
|
});
|
|
return {
|
|
buffer,
|
|
mimeType,
|
|
fileName: `video-1.${extensionForMime(mimeType)?.slice(1) ?? "mp4"}`,
|
|
};
|
|
}
|
|
|
|
export function buildXaiVideoGenerationProvider(): VideoGenerationProvider {
|
|
return {
|
|
id: "xai",
|
|
label: "xAI",
|
|
defaultModel: DEFAULT_XAI_VIDEO_MODEL,
|
|
defaultTimeoutMs: DEFAULT_TIMEOUT_MS,
|
|
models: [DEFAULT_XAI_VIDEO_MODEL],
|
|
isConfigured: ({ agentDir }) =>
|
|
isProviderApiKeyConfigured({
|
|
provider: "xai",
|
|
agentDir,
|
|
}),
|
|
capabilities: {
|
|
generate: {
|
|
maxVideos: 1,
|
|
maxDurationSeconds: 15,
|
|
aspectRatios: [...XAI_VIDEO_ASPECT_RATIOS],
|
|
resolutions: ["480P", "720P"],
|
|
supportsAspectRatio: true,
|
|
supportsResolution: true,
|
|
},
|
|
imageToVideo: {
|
|
enabled: true,
|
|
maxVideos: 1,
|
|
maxInputImages: 7,
|
|
maxDurationSeconds: 15,
|
|
aspectRatios: [...XAI_VIDEO_ASPECT_RATIOS],
|
|
resolutions: ["480P", "720P"],
|
|
supportsAspectRatio: true,
|
|
supportsResolution: true,
|
|
},
|
|
videoToVideo: {
|
|
enabled: true,
|
|
maxVideos: 1,
|
|
maxInputVideos: 1,
|
|
maxDurationSeconds: 15,
|
|
supportsAspectRatio: true,
|
|
supportsResolution: true,
|
|
},
|
|
},
|
|
async generateVideo(req) {
|
|
const auth = await resolveApiKeyForProvider({
|
|
provider: "xai",
|
|
cfg: req.cfg,
|
|
agentDir: req.agentDir,
|
|
store: req.authStore,
|
|
});
|
|
if (!auth.apiKey) {
|
|
throw new Error("xAI API key missing");
|
|
}
|
|
|
|
const fetchFn = fetch;
|
|
const deadline = createProviderOperationDeadline({
|
|
timeoutMs: req.timeoutMs,
|
|
label: "xAI video generation",
|
|
});
|
|
const { baseUrl, allowPrivateNetwork, headers, dispatcherPolicy } =
|
|
resolveProviderHttpRequestConfig({
|
|
baseUrl: resolveXaiVideoBaseUrl(req),
|
|
defaultBaseUrl: DEFAULT_XAI_VIDEO_BASE_URL,
|
|
allowPrivateNetwork: false,
|
|
defaultHeaders: {
|
|
Authorization: `Bearer ${auth.apiKey}`,
|
|
"Content-Type": "application/json",
|
|
},
|
|
provider: "xai",
|
|
capability: "video",
|
|
transport: "http",
|
|
});
|
|
// Per-submit idempotency key prevents accidental double-charging if
|
|
// the request is replayed. Polls intentionally reuse `headers` without it.
|
|
const submitHeaders = new Headers(headers);
|
|
submitHeaders.set("x-idempotency-key", crypto.randomUUID());
|
|
const { response, release } = await postJsonRequest({
|
|
url: `${baseUrl}${resolveCreateEndpoint(req)}`,
|
|
headers: submitHeaders,
|
|
body: buildCreateBody(req),
|
|
timeoutMs: resolveProviderOperationTimeoutMs({
|
|
deadline,
|
|
defaultTimeoutMs: DEFAULT_TIMEOUT_MS,
|
|
}),
|
|
fetchFn,
|
|
allowPrivateNetwork,
|
|
dispatcherPolicy,
|
|
});
|
|
try {
|
|
await assertOkOrThrowHttpError(response, "xAI video generation failed");
|
|
const submitted = readXaiCreateResponse(await readXaiVideoJson(response));
|
|
const requestId = normalizeOptionalString(submitted.request_id);
|
|
if (!requestId) {
|
|
throw new Error(
|
|
normalizeOptionalString(submitted.error?.message) ??
|
|
"xAI video generation response missing request_id",
|
|
);
|
|
}
|
|
const completed = await pollXaiVideo({
|
|
requestId,
|
|
headers,
|
|
timeoutMs: resolveProviderOperationTimeoutMs({
|
|
deadline,
|
|
defaultTimeoutMs: DEFAULT_TIMEOUT_MS,
|
|
}),
|
|
baseUrl,
|
|
fetchFn,
|
|
});
|
|
const videoUrl = normalizeOptionalString(completed.video?.url);
|
|
if (!videoUrl) {
|
|
throw new Error(XAI_VIDEO_MALFORMED_RESPONSE);
|
|
}
|
|
const video = await downloadXaiVideo({
|
|
url: videoUrl,
|
|
timeoutMs: createProviderOperationTimeoutResolver({
|
|
deadline,
|
|
defaultTimeoutMs: DEFAULT_TIMEOUT_MS,
|
|
}),
|
|
fetchFn,
|
|
maxBytes: resolveGeneratedVideoMaxBytes(req),
|
|
});
|
|
return {
|
|
videos: [video],
|
|
model: normalizeOptionalString(req.model) ?? DEFAULT_XAI_VIDEO_MODEL,
|
|
metadata: {
|
|
requestId,
|
|
status: completed.status,
|
|
videoUrl,
|
|
mode: resolveXaiVideoMode(req),
|
|
},
|
|
};
|
|
} finally {
|
|
await release();
|
|
}
|
|
},
|
|
};
|
|
}
|