An image input to the model.

interface InputImage {
    detail?: string;
    image_url: string;
    type: "input_image";
}

Properties

detail?: string

The detail level of the image to be sent to the model. One of high, low, or auto. Defaults to auto.

image_url: string

The URL of the image input.

type: "input_image"

The type of the image input. Always input_image.