Interface GroundingChunkWeb

A Web chunk is a piece of evidence that comes from a web page. It contains the URI of the web page, the title of the page, and the domain of the page. This is used to provide the user with a link to the source of the information.

interface GroundingChunkWeb {
    domain?: string;
    title?: string;
    uri?: string;
}

Properties

Properties

domain?: string

The domain of the web page that contains the evidence. This can be used to filter out low-quality sources. This field is not supported in Gemini API.

title?: string

The title of the web page that contains the evidence.

uri?: string

The URI of the web page that contains the evidence.