Represents a chunk of retrieved data that supports a claim in the model's response. This is part of the grounding information provided when grounding is enabled.
Signature:
export interface GroundingChunk
Properties
| Property | Type | Description |
|---|---|---|
| maps | GoogleMapsGroundingChunk | Contains details if the grounding chunk is from a Google Maps source. |
| web | WebGroundingChunk | Contains details if the grounding chunk is from a web source. |
GroundingChunk.maps
Contains details if the grounding chunk is from a Google Maps source.
Signature:
maps?: GoogleMapsGroundingChunk;
GroundingChunk.web
Contains details if the grounding chunk is from a web source.
Signature:
web?: WebGroundingChunk;