The results of a web search tool call. See the web search guide for more information.

interface ResponseFunctionWebSearch {
    id: string;
    status:
        | "in_progress"
        | "searching"
        | "completed"
        | "failed";
    type: "web_search_call";
}

Properties

Properties

id: string

The unique ID of the web search tool call.

status:
    | "in_progress"
    | "searching"
    | "completed"
    | "failed"

The status of the web search tool call.

type: "web_search_call"

The type of the web search tool call. Always web_search_call.