Emitted when an image generation tool call is actively generating an image (intermediate state).

interface ResponseImageGenCallGeneratingEvent {
    item_id: string;
    output_index: number;
    sequence_number: number;
    type: "response.image_generation_call.generating";
}

Properties

item_id: string

The unique identifier of the image generation item being processed.

output_index: number

The index of the output item in the response's output array.

sequence_number: number

The sequence number of the image generation item being processed.

type: "response.image_generation_call.generating"

The type of the event. Always 'response.image_generation_call.generating'.