Google Search result content.

interface GoogleSearchResultContent {
    call_id: string;
    is_error?: boolean;
    result: GeminiNextGenAPIClient.Interactions.GoogleSearchResult[];
    signature?: string;
    type: "google_search_result";
}

Properties

call_id: string

ID to match the ID from the google search call block.

is_error?: boolean

Whether the Google Search resulted in an error.

The results of the Google Search.

signature?: string

A signature hash for backend validation.

type: "google_search_result"