Interface GroundingChunkRetrievedContext

Chunk from context retrieved by the retrieval tools.

interface GroundingChunkRetrievedContext {
    documentName?: string;
    ragChunk?: RagChunk;
    text?: string;
    title?: string;
    uri?: string;
}

Properties

documentName?: string

Output only. The full document name for the referenced Vertex AI Search document.

ragChunk?: RagChunk

Additional context for the RAG retrieval result. This is only populated when using the RAG retrieval tool.

text?: string

Text of the attribution.

title?: string

Title of the attribution.

uri?: string

URI reference of the attribution.