Emitted when there is a partial function-call arguments delta.

interface ResponseFunctionCallArgumentsDeltaEvent {
    delta: string;
    item_id: string;
    output_index: number;
    type: "response.function_call_arguments.delta";
}

Properties

delta: string

The function-call arguments delta that is added.

item_id: string

The ID of the output item that the function-call arguments delta is added to.

output_index: number

The index of the output item that the function-call arguments delta is added to.

type: "response.function_call_arguments.delta"

The type of the event. Always response.function_call_arguments.delta.