Emitted when function-call arguments are finalized.

interface ResponseFunctionCallArgumentsDoneEvent {
    arguments: string;
    item_id: string;
    output_index: number;
    type: "response.function_call_arguments.done";
}

Properties

arguments: string

The function-call arguments.

item_id: string

The ID of the item.

output_index: number

The index of the output item.

type: "response.function_call_arguments.done"