Package com.google.genai.types
Class GroundingChunk
java.lang.Object
com.google.genai.JsonSerializable
com.google.genai.types.GroundingChunk
A piece of evidence that supports a claim made by the model.
This is used to show a citation for a claim made by the model. When grounding is enabled, the model returns a `GroundingChunk` that contains a reference to the source of the information.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields inherited from class com.google.genai.JsonSerializable
MAX_READ_LENGTH_PROPERTY -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic GroundingChunk.Builderbuilder()Instantiates a builder for GroundingChunk.static GroundingChunkDeserializes a JSON string to a GroundingChunk object.abstract Optional<GroundingChunkImage>image()A grounding chunk from an image search result.abstract Optional<GroundingChunkMaps>maps()A `Maps` chunk is a piece of evidence that comes from Google Maps.abstract Optional<GroundingChunkRetrievedContext>A grounding chunk from a data source retrieved by a retrieval tool, such as Vertex AI Search.abstract GroundingChunk.BuilderCreates a builder with the same values as this instance.abstract Optional<GroundingChunkWeb>web()A grounding chunk from a web page, typically from Google Search.Methods inherited from class com.google.genai.JsonSerializable
fromJsonNode, fromJsonString, objectMapper, setMaxReadLength, stringToJsonNode, toJson, toJsonNode, toJsonString
-
Constructor Details
-
GroundingChunk
public GroundingChunk()
-
-
Method Details
-
image
A grounding chunk from an image search result. See the `Image` message for details. -
maps
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.
-
retrievedContext
A grounding chunk from a data source retrieved by a retrieval tool, such as Vertex AI Search. See the `RetrievedContext` message for details. This field is not supported in Gemini API. -
web
A grounding chunk from a web page, typically from Google Search. See the `Web` message for details. -
builder
Instantiates a builder for GroundingChunk. -
toBuilder
Creates a builder with the same values as this instance. -
fromJson
Deserializes a JSON string to a GroundingChunk object.
-