GroundingChunkImage

@Serializable
data class GroundingChunkImage(val sourceUri: String? = null, val imageUri: String? = null, val title: String? = null, val domain: String? = null)

An Image chunk is a piece of evidence that comes from an image search result. It contains the URI of the image search result and the URI of the image. This is used to provide the user with a link to the source of the information.

Constructors

Link copied to clipboard
constructor(sourceUri: String? = null, imageUri: String? = null, title: String? = null, domain: String? = null)

Properties

Link copied to clipboard
val domain: String? = null

The domain of the image search result page.

Link copied to clipboard
val imageUri: String? = null

The URI of the image.

Link copied to clipboard
val sourceUri: String? = null

The URI of the image search result page.

Link copied to clipboard
val title: String? = null

The title of the image search result page.