Interface GroundingChunkCustomMetadata

User provided metadata about the GroundingFact. This data type is not supported in Vertex AI.

interface GroundingChunkCustomMetadata {
    key?: string;
    numericValue?: number;
    stringListValue?: GroundingChunkStringList;
    stringValue?: string;
}

Properties

key?: string

The key of the metadata.

numericValue?: number

Optional. The numeric value of the metadata. The expected range for this value depends on the specific key used.

stringListValue?: GroundingChunkStringList

Optional. A list of string values for the metadata.

stringValue?: string

Optional. The string value of the metadata.