Interface GroundingChunkMaps

A Maps chunk is a piece of evidence that comes from Google Maps.

It contains information about a place, such as its name, address, and reviews. This is used to provide the user with rich, location-based information.

interface GroundingChunkMaps {
    placeAnswerSources?: GroundingChunkMapsPlaceAnswerSources;
    placeId?: string;
    text?: string;
    title?: string;
    uri?: string;
}

Properties

The sources that were used to generate the place answer.

This includes review snippets and photos that were used to generate the answer, as well as URIs to flag content.

placeId?: string

This Place's resource name, in places/{place_id} format.

This can be used to look up the place in the Google Maps API.

text?: string

The text of the place answer.

title?: string

The title of the place.

uri?: string

The URI of the place.