Google Search content.

interface GoogleSearchCallContent {
    arguments: GeminiNextGenAPIClient.Interactions.GoogleSearchCallArguments;
    id: string;
    search_type?: "web_search" | "image_search";
    signature?: string;
    type: "google_search_call";
}

Properties

The arguments to pass to Google Search.

id: string

A unique ID for this specific tool call.

search_type?: "web_search" | "image_search"

The type of search grounding enabled.

signature?: string

A signature hash for backend validation.

type: "google_search_call"