interface GoogleSearchCallStep {
    arguments: GoogleSearchCallArguments;
    id: string;
    search_type?: GoogleSearchCallStepSearchType;
    signature?: string;
    type: "google_search_call";
}

Hierarchy

  • GoogleSearchCallStep$
    • GoogleSearchCallStep

Properties

The arguments to pass to Google Search.

id: string

Required. A unique ID for this specific tool call.

The type of search grounding enabled.

signature?: string

A signature hash for backend validation.

type: "google_search_call"