Emitted when a file search is currently searching.

interface ResponseFileSearchCallSearchingEvent {
    item_id: string;
    output_index: number;
    type: "response.file_search_call.searching";
}

Properties

item_id: string

The ID of the output item that the file search call is initiated.

output_index: number

The index of the output item that the file search call is searching.

type: "response.file_search_call.searching"

The type of the event. Always response.file_search_call.searching.

""