WebGroundingChunk interface

A grounding chunk from the web.

Signature:

export interface WebGroundingChunk 

Properties

Property Type Description
domain string The domain of the original URI from which the content was retrieved.This property is only supported in the Vertex AI Gemini API (VertexAIBackend). When using the Gemini Developer API (GoogleAIBackend), this property will be undefined.
title string The title of the retrieved web page.
uri string The URI of the retrieved web page.

WebGroundingChunk.domain

The domain of the original URI from which the content was retrieved.

This property is only supported in the Vertex AI Gemini API (VertexAIBackend). When using the Gemini Developer API (GoogleAIBackend), this property will be undefined.

Signature:

domain?: string;

WebGroundingChunk.title

The title of the retrieved web page.

Signature:

title?: string;

WebGroundingChunk.uri

The URI of the retrieved web page.

Signature:

uri?: string;