Google Search call step.

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

Properties

Required. The arguments to pass to Google Search.

id: string

Required. A unique ID for this specific tool call.

search_type?: "web_search" | "image_search" | "enterprise_web_search"

The type of search grounding enabled.

signature?: string

A signature hash for backend validation.

type: "google_search_call"