A tool that can be used by the model to call Google Maps.

interface GoogleMaps {
    enable_widget?: boolean;
    latitude?: number;
    longitude?: number;
    type: "google_maps";
}

Properties

enable_widget?: boolean

Whether to return a widget context token in the tool call result of the response.

latitude?: number

The latitude of the user's location.

longitude?: number

The longitude of the user's location.

type: "google_maps"