Interface AlibabaCloudNodeParameters

Source
interface AlibabaCloudNodeParameters {
    binaryPropertyName?: string;
    downloadImage?: boolean;
    downloadVideo?: boolean;
    duration?: number;
    imageOptions?: {
        promptExtend?: boolean;
        size?:
            | "1024*1024"
            | "720*1280"
            | "1280*720"
            | "1104*1472"
            | "1328*1328"
            | "1472*1104"
            | "1664*928"
            | "928*1664";
    };
    imageToVideoOptions?: {
        audio?: boolean;
        audioBinaryPropertyName?: string;
        audioInputType?: "url"
        | "binary";
        audioUrl?: string;
        promptExtend?: boolean;
    };
    imageUrl?: string;
    imgUrl?: string;
    inputType?: "url"
    | "binary";
    messages?: {
        messageValues: {
            content?: string;
            role?: "user" | "assistant";
        }[];
    };
    modelId?: | { mode: "id"
    | "list"; value: string }
    | "qwen3-max"
    | "qwen3-max-2026-01-23"
    | "qwen3.5-122b-a10b"
    | "qwen3.5-27b"
    | "qwen3.5-35b-a3b"
    | "qwen3.5-397b-a17b"
    | "qwen3.5-flash"
    | "qwen3.5-flash-2026-02-23"
    | "qwen3.5-plus"
    | "qwen3.5-plus-2026-02-15"
    | "qwen3-vl-flash"
    | "qwen3-vl-plus"
    | "qwen-image"
    | "qwen-image-max"
    | "qwen-image-plus"
    | "wan2.6-t2i"
    | "z-image-turbo"
    | "wan2.6-t2v"
    | "wan2.6-i2v-flash"
    | "wan2.6-i2v";
    operation?:
        | "message"
        | "analyze"
        | "generate"
        | "textToVideo"
        | "imageToVideo";
    options?: {
        enableSearch?: boolean;
        maxTokens?: number;
        maxToolsIterations?: number;
        repetitionPenalty?: number;
        seed?: number;
        stop?: string;
        system?: string;
        temperature?: number;
        topK?: number;
        topP?: number;
    };
    prompt?: string;
    question?: string;
    resolution?: "720P"
    | "1080P";
    resource?: "video" | "text" | "image";
    shotType?: "single" | "multi";
    simplify?: boolean;
    videoOptions?: {
        audio?: boolean;
        audioBinaryPropertyName?: string;
        audioInputType?: "url" | "binary";
        audioUrl?: string;
        promptExtend?: boolean;
    };
    visionOptions?: {
        maxTokens?: number;
        temperature?: number;
    };
}

Properties§

§readonly binaryPropertyName?: string

Default: "data"

§readonly downloadImage?: boolean

Whether to download the generated image as binary data. When disabled, only the image URL is returned. Default: true

§readonly downloadVideo?: boolean

Whether to download the generated video as binary data. When disabled, only the video URL is returned. Default: true

§readonly duration?: number

Duration of the generated video in seconds (2–15) Default: 5 Type options: {"minValue":2,"maxValue":15}

§readonly imageOptions?: { ... }

Default: {}

§readonly imageToVideoOptions?: { ... }

Default: {}

§readonly imageUrl?: string

The URL of the image to analyze

§readonly imgUrl?: string

The URL of the first-frame image to generate video from

§readonly inputType?: "url" | "binary"

How to provide the image for analysis Default: "url"

§readonly messages?: { ... }

Default: {"messageValues":[{"content":"","role":"user"}]} Type options: {"multipleValues":true}

§readonly modelId?:
    | { mode: "id"
    | "list"; value: string }
    | "qwen3-max"
    | "qwen3-max-2026-01-23"
    | "qwen3.5-122b-a10b"
    | "qwen3.5-27b"
    | "qwen3.5-35b-a3b"
    | "qwen3.5-397b-a17b"
    | "qwen3.5-flash"
    | "qwen3.5-flash-2026-02-23"
    | "qwen3.5-plus"
    | "qwen3.5-plus-2026-02-15"
    | "qwen3-vl-flash"
    | "qwen3-vl-plus"
    | "qwen-image"
    | "qwen-image-max"
    | "qwen-image-plus"
    | "wan2.6-t2i"
    | "z-image-turbo"
    | "wan2.6-t2v"
    | "wan2.6-i2v-flash"
    | "wan2.6-i2v"

The model to use for generation Default: "qwen3.5-flash"

§readonly operation?:
    | "message"
    | "analyze"
    | "generate"
    | "textToVideo"
    | "imageToVideo"

Default: "message"

§readonly options?: { ... }

Default: {}

§readonly prompt?: string

The text prompt describing the image to generate Type options: {"rows":4}

§readonly question?: string

The question or instruction about the image Type options: {"rows":4}

§readonly resolution?: "720P" | "1080P"

Resolution tier of the generated video Default: "1080P"

§readonly resource?: "video" | "text" | "image"

Default: "text"

§readonly shotType?: "single" | "multi"

Whether to generate a single-shot or multi-shot narrative video Default: "single"

§readonly simplify?: boolean

Whether to return a simplified version of the response instead of the raw data Default: true

§readonly videoOptions?: { ... }

Default: {}

§readonly visionOptions?: { ... }

Default: {}