GoogleSearchResultStep: {
    call_id: string;
    is_error?: boolean;
    result: GoogleSearchResult[];
    signature?: string;
    type: "google_search_result";
}

Google Search result step.

Type declaration

  • call_id: string

    Required. ID to match the ID from the function call block.

  • Optionalis_error?: boolean

    Whether the Google Search resulted in an error.

  • result: GoogleSearchResult[]

    Required. The results of the Google Search.

  • Optionalsignature?: string

    A signature hash for backend validation.

  • type: "google_search_result"