@squidcloud/client
    Preparing search index...

    Interface DallEOptions

    Options for generating images using the DALL-E model.

    interface DallEOptions {
        modelName: "dall-e-3";
        numberOfImagesToGenerate?: 1;
        quality?: "hd" | "standard";
        size?: "1024x1024" | "1792x1024" | "1024x1792";
    }

    Hierarchy (View Summary)

    Index

    Properties

    modelName: "dall-e-3"

    Specifies the DALL-E 3 model for image generation.

    numberOfImagesToGenerate?: 1

    The number of images to generate; defaults to 1 and limited to 1.

    quality?: "hd" | "standard"

    The quality of the generated image; defaults to 'standard'.

    size?: "1024x1024" | "1792x1024" | "1024x1792"

    The size of the generated image; defaults to '1024x1024'.