Returned when the model-generated function call arguments are done streaming. Also emitted when a Response is interrupted, incomplete, or cancelled.

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

Properties

arguments: string

The final arguments as a JSON string.

call_id: string

The ID of the function call.

event_id: string

The unique ID of the server event.

item_id: string

The ID of the function call item.

output_index: number

The index of the output item in the response.

response_id: string

The ID of the response.

type: "response.function_call_arguments.done"

The event type, must be response.function_call_arguments.done.