A retail company has deployed a generative AI chatbot for customer support. They notice that the model sometimes provides incorrect product information. The team wants to ground the model's responses in their product catalog to improve accuracy. Which Vertex AI feature should they enable?
Grounding allows the model to retrieve real-time information from a designated data source, ensuring responses are based on the catalog.
Why this answer
Option B is correct because Grounding with Google Search allows the model to retrieve real-time, authoritative information from the product catalog via Vertex AI's grounding service, ensuring responses are based on verified data rather than the model's internal knowledge. This feature directly addresses the need to reduce hallucinations by anchoring the model's output to a trusted source, such as a product database, without requiring custom retrieval infrastructure.
Exam trap
Cisco often tests the distinction between grounding (real-time retrieval from a trusted source) and fine-tuning (static model updates), leading candidates to mistakenly choose fine-tuning when the question emphasizes dynamic accuracy improvements.
How to eliminate wrong answers
Option A is wrong because Vertex AI RAG Engine (Retrieval-Augmented Generation) is a framework for building custom retrieval pipelines, but it requires additional setup and indexing of the product catalog, whereas Grounding with Google Search provides a simpler, out-of-the-box solution for grounding responses in external data. Option C is wrong because increasing the model's temperature setting would make responses more random and creative, which is the opposite of what is needed to improve accuracy and reduce incorrect product information. Option D is wrong because fine-tuning the model with product catalog updates would require retraining the model on static data, which is inefficient for dynamic catalogs and does not guarantee real-time grounding; it also risks catastrophic forgetting and does not leverage Vertex AI's built-in grounding capabilities.