@squidcloud/client
    Preparing search index...

    Interface FluxOptions

    Options for generating images using the Flux model.

    interface FluxOptions {
        height?: number;
        modelName: "flux-pro-1.1";
        prompt_upsampling?: boolean;
        safety_tolerance?: number;
        seed?: number;
        width?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    height?: number

    The height of the generated image, must be a multiple of 32, min 256, max 1440; defaults to 768.

    modelName: "flux-pro-1.1"

    Specifies the Flux Pro 1.1 model for image generation.

    prompt_upsampling?: boolean

    Whether to enhance the prompt for more creative output; defaults to false.

    safety_tolerance?: number

    The safety tolerance level, from 1 (strict) to 5 (permissive).

    seed?: number

    A random seed for reproducible generation, if specified.

    width?: number

    The width of the generated image, must be a multiple of 32, min 256, max 1440; defaults to 1024.