interface FileSearchToolCallDelta {
    file_search: unknown;
    id?: string;
    index: number;
    type: "file_search";
}

Properties

file_search: unknown

For now, this is always going to be an empty object.

id?: string

The ID of the tool call object.

index: number

The index of the tool call in the tool calls array.

type: "file_search"

The type of tool call. This is always going to be file_search for this type of tool call.