Interface GroundingChunkImage

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.

interface GroundingChunkImage {
    domain?: string;
    imageUri?: string;
    sourceUri?: string;
    title?: string;
}

Properties

domain?: string

The domain of the image search result page.

imageUri?: string

The URI of the image.

sourceUri?: string

The URI of the image search result page.

title?: string

The title of the image search result page.