Event indicating that input for a custom tool call is complete.

interface ResponseCustomToolCallInputDoneEvent {
    input: string;
    item_id: string;
    output_index: number;
    sequence_number: number;
    type: "response.custom_tool_call_input.done";
}

Properties

input: string

The complete input data for the custom tool call.

item_id: string

Unique identifier for the API item associated with this event.

output_index: number

The index of the output this event applies to.

sequence_number: number

The sequence number of this event.

type: "response.custom_tool_call_input.done"

The event type identifier.